This Python script will look for links to Youtube, Twitter, etc,. in a specified column of a Google Sheet, uses YoutubeDL to download the media, stores the result in a Digital Ocean space, and updates the Google Sheet with the archive location, status, and date. It can be run manually or on an automated basis.
[A Google Service account is necessary for use with `gspread`.](https://gspread.readthedocs.io/en/latest/oauth2.html#for-bots-using-service-account) Credentials for this account should be stored in `service_account.json`, in the same directory as the script.
[firefox](https://www.mozilla.org/en-US/firefox/new/) and [geckodriver](https://github.com/mozilla/geckodriver/releases) on a path folder like `/usr/local/bin`.
A `.env` file is required for saving content to a Digital Ocean space, and for archiving pages to the Internet Archive. This file should also be in the script directory, and should contain the following variables:
There is just one necessary command line flag, `--sheet name` which the name of the Google Sheet to check for URLs. This sheet must have been shared with the Google Service account used by `gspread`. This sheet must also have specific columns in the first row:
*`Media URL` (required): the location of the media to be archived. This is the only column that should be supplied with data initially
*`Archive status` (required): the status of the auto archiver script. Any row with text in this column will be skipped automatically.
*`Archive location` (required): the location of the archived version. For files that were not able to be auto archived, this can be manually updated.
*`Archive date`: the date that the auto archiver script ran for this file
*`Upload timestamp`: the timestamp extracted from the video. (For YouTube, this unfortunately does not currently include the time)
*`Duration`: the duration of the video
*`Upload title`: the "title" of the video from the original source
*`Thumbnail`: an image thumbnail of the video (resize row height to make this more visible)
*`Thumbnail index`: a link to a page that shows many thumbnails for the video, useful for quickly seeing video content


Note that the first row is skipped, as it is assumed to be a header row. Rows with an empty URL column, or a non-empty archive column are also skipped. All sheets in the document will be checked.
With this configuration, the archiver should archive and store all media added to the Google Sheet every 60 seconds. Of course, additional logging information, etc. might be required.
To make it easier to set up new auto-archiver sheets, the auto-auto-archiver will look at a particular sheet and run the auto-archiver on every sheet name in column A, starting from row 11. (It starts here to support instructional text in the first rows of the sheet, as shown below.) This script takes one command line argument, with `--sheet`, the name of the sheet. It must be shared with the same service account.
