kopia lustrzana https://github.com/bellingcat/auto-archiver
improves documentation
rodzic
4c54926548
commit
07bbf443ca
|
@ -84,6 +84,7 @@ graph TD
|
||||||
A -->|parent of| C(TikTokArchiver)
|
A -->|parent of| C(TikTokArchiver)
|
||||||
A -->|parent of| D(YoutubeDLArchiver)
|
A -->|parent of| D(YoutubeDLArchiver)
|
||||||
A -->|parent of| E(WaybackArchiver)
|
A -->|parent of| E(WaybackArchiver)
|
||||||
|
A -->|parent of| F(TwitterArchiver)
|
||||||
```
|
```
|
||||||
### Current Storages
|
### Current Storages
|
||||||
```mermaid
|
```mermaid
|
||||||
|
|
|
@ -2,6 +2,12 @@ from gspread import utils
|
||||||
|
|
||||||
|
|
||||||
class GWorksheet:
|
class GWorksheet:
|
||||||
|
"""
|
||||||
|
This class makes read/write operations to the a worksheet easier.
|
||||||
|
It can read the headers from a custom row number, but the row references
|
||||||
|
should always include the offset of the header.
|
||||||
|
eg: if header=4, row 5 will be the first with data.
|
||||||
|
"""
|
||||||
COLUMN_NAMES = {
|
COLUMN_NAMES = {
|
||||||
'url': 'link',
|
'url': 'link',
|
||||||
'archive': 'archive location',
|
'archive': 'archive location',
|
||||||
|
|
Ładowanie…
Reference in New Issue