auto-archiver/README.md

94 wiersze
5.2 KiB
Markdown
Czysty Zwykły widok Historia

2021-02-09 14:19:46 +00:00
# auto-archiver
2021-02-09 14:22:58 +00:00
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.
2021-02-09 14:19:46 +00:00
## Setup
If you are using `pipenv` (recommended), `pipenv install` is sufficient to install Python prerequisites.
[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.
2021-02-09 14:19:46 +00:00
2022-02-21 13:19:09 +00:00
[ffmpeg](https://www.ffmpeg.org/) must also be installed locally for this tool to work.
[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:
2021-02-09 14:19:46 +00:00
```
DO_SPACES_REGION=
DO_BUCKET=
DO_SPACES_KEY=
DO_SPACES_SECRET=
2021-06-04 10:07:03 +00:00
INTERNET_ARCHIVE_S3_KEY=
INTERNET_ARCHIVE_S3_SECRET=
2021-02-09 14:19:46 +00:00
```
2021-06-04 10:07:03 +00:00
Internet Archive credentials can be retrieved from https://archive.org/account/s3.php.
2021-02-09 14:19:46 +00:00
## Running
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
2021-02-09 14:19:46 +00:00
For example, for use with this spreadsheet:
![A screenshot of a Google Spreadsheet with column headers defined as above, and several Youtube and Twitter URLs in the "Media URL" column](docs/demo-before.png)
2021-02-09 14:19:46 +00:00
```pipenv run python auto_archive.py --sheet archiver-test```
2021-02-09 14:19:46 +00:00
When the auto archiver starts running, it updates the "Archive status" column.
2021-02-09 14:19:46 +00:00
![A screenshot of a Google Spreadsheet with column headers defined as above, and several Youtube and Twitter URLs in the "Media URL" column. The auto archiver has added "archive in progress" to one of the status columns.](docs/demo-progress.png)
2021-02-09 14:19:46 +00:00
The links are downloaded and archived, and the spreadsheet is updated to the following:
2021-02-09 14:19:46 +00:00
![A screenshot of a Google Spreadsheet with videos archived and metadata added per the description of the columns above.](docs/demo-after.png)
2021-02-09 14:27:42 +00:00
Live streaming content is recorded in a separate thread.
2021-02-09 14:19:46 +00:00
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.
2021-02-09 14:19:46 +00:00
## Automating
2021-02-09 14:19:46 +00:00
The auto-archiver can be run automatically via cron. An example crontab entry that runs the archiver every minute is as follows.
2021-02-09 14:19:46 +00:00
```* * * * * python auto_archive.py --sheet archiver-test```
2021-02-09 14:19:46 +00:00
2021-05-14 12:06:41 +00:00
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.
# auto_auto_archiver
2021-05-14 12:06:41 +00:00
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.
![A screenshot of a Google Spreadsheet configured to show instructional text and a list of sheet names to check with auto-archiver.](docs/auto-auto.png)
2022-02-23 15:07:58 +00:00
# Code structure
Code is split into functional concepts:
1. [Archivers](archivers/) - receive a URL that they try to archive
2. [Storages](storages/) - they deal with where the archived files go
3. [Utilities](utils/)
1. [GWorksheet](utils/gworksheet.py) - facilitates some of the reading/writing tasks for a Google Worksheet
2022-02-23 15:07:58 +00:00
### Current Archivers
```mermaid
graph TD
A(Archiver) -->|parent of| B(TelegramArchiver)
A -->|parent of| C(TikTokArchiver)
A -->|parent of| D(YoutubeDLArchiver)
A -->|parent of| E(WaybackArchiver)
2022-03-13 11:05:09 +00:00
A -->|parent of| F(TwitterArchiver)
2022-02-23 15:07:58 +00:00
```
### Current Storages
```mermaid
graph TD
A(BaseStorage) -->|parent of| B(S3Storage)
```