mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-07-01 13:26:40 +00:00
added Blacklisted column migration to webring-participants.csv
This commit is contained in:
parent
ba20f68871
commit
202381869f
1 changed files with 5 additions and 0 deletions
|
@ -150,6 +150,11 @@ def main():
|
|||
webpdf = pd.read_csv(webpcsvfile, on_bad_lines='skip')
|
||||
print_colors(f"[+] file exists, your Webring URL is {instance}")
|
||||
|
||||
if 'Blacklisted' not in webpdf.columns:
|
||||
webpdf.insert(4, 'Blacklisted', 'NO')
|
||||
|
||||
webpdf.to_csv(webpcsvfile)
|
||||
|
||||
##### CHECK IF ARGUMENTS ARE PASSED TO ENTER PROMPT-LESS MODE #####
|
||||
if len(sys.argv) == 2 and sys.argv[1] == "4":
|
||||
print("4) Synchronize new links from existing webring participants into your unverified.csv file")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue