├── LICENSE ├── README.md ├── clients ├── OverleafClient.py └── __init__.py ├── overleaf_backup.py ├── requirements.txt ├── storage ├── GitStorage.py └── __init__.py └── utils ├── __init__.py └── debug.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/README.md -------------------------------------------------------------------------------- /clients/OverleafClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/clients/OverleafClient.py -------------------------------------------------------------------------------- /clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overleaf_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/overleaf_backup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests 3 | gitpython 4 | click -------------------------------------------------------------------------------- /storage/GitStorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/storage/GitStorage.py -------------------------------------------------------------------------------- /storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathan-LeRoux/overleaf-backup-tool/HEAD/utils/debug.py --------------------------------------------------------------------------------