creates utils module and moves gworkseet there

pull/13/head
msramalho 2022-02-23 16:24:59 +01:00
rodzic 2601313249
commit 1d62009c4f
4 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -72,8 +72,8 @@ To make it easier to set up new auto-archiver sheets, the auto-auto-archiver wil
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
1. [GWorksheet](gworksheet.py) - facilitates some of the reading/writing tasks for a Google Worksheet
3. [Utilities](utils/)
1. [GWorksheet](utils/gworksheet.py) - facilitates some of the reading/writing tasks for a Google Worksheet
### Current Archivers
```mermaid

Wyświetl plik

@ -8,7 +8,7 @@ from dotenv import load_dotenv
import archivers
from storages import S3Storage, S3Config
from gworksheet import GWorksheet
from utils import GWorksheet
load_dotenv()

Wyświetl plik

@ -0,0 +1,2 @@
# we need to explicitly expose the available imports here
from .gworksheet import GWorksheet