AutoWaybackMachine is an automation tool that fills a gap in the Wayback Machine API by enabling users to programmatically back up URLs that have not yet been archived.
You need to provide the name of the browser you want to use, such as Chrome
, Firefox
, or Edge
.
-b firefox
If you have a login file, it must be a .json` file and follow the following format:
{
"email": "example@example.com",
"password": "verysecurepassword123!!$#"
}
You can back up URLs from the command line using the following format:
-b firefox -l login.json -u https://example.com
If you have multiple URLs to back up, you can include them as follows:
-b firefox -l login.json -u https://example.com -u https://example2.com -u https://example3.com
If you have a file with URLs you want to back up, you can use the following command:
-b firefox -l login.json -up urls.txt
You can run the program with dotnet run -- , compile an executable file using dotnet publish, or download a compiled version from the Releases tab.