added Blacklisted column migration to webring-participants.csv

This commit is contained in:
doctor_dev 2025-06-06 21:39:18 +00:00
parent ba20f68871
commit 202381869f
No known key found for this signature in database
GPG key ID: F12F7F71CB84AEAA

View file

@ -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")