Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

A nifty tool that lets you automatically back up URLs using popular browsers like Chrome, Firefox, and Edge.

License

Notifications You must be signed in to change notification settings

DontEatOreo/AutoWaybackMachine

Repository files navigation

AutoWaybackMachine

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.

Browser Selection

You need to provide the name of the browser you want to use, such as Chrome, Firefox, or Edge.

-b firefox

Login File

If you have a login file, it must be a .json` file and follow the following format:

{
    "email": "example@example.com",
    "password": "verysecurepassword123!!$#"
}

Backing up URLs from the Command Line

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

Backing up urls from a file

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

How to run the program?

You can run the program with dotnet run -- , compile an executable file using dotnet publish, or download a compiled version from the Releases tab.