It seems like a lot of the previous software wrappers to interact with archive.today (and archive.is, archive.ph, etc) via the command-line are either outdated or broken. So, here's a Python script to automatically submit links from the command-line to archive.today and retrieve their archived URLs. From testing, it seems like it's best to keep the delay around 8 to 10 seconds. If you go too fast, Cloudflare will begin to yell at you and start throwing 429 errors. As long as you've received a "WIP" URL from archive.today, it should be archived shortly after, though it may not appear immediately. Add your own random user-agent. :) ''' % python3 archiveToday.py --help usage: archiveToday.py [-h] --urls URLS [--delay DELAY] [--output OUTPUT] Batch archive URLs with archive.today options: -h, --help show this help message and exit --urls URLS Path to file containing URLs (one per line) --delay DELAY Delay between submissions in...