├── .DS_Store ├── README.md ├── dist ├── force_backup_automator-1.4-py3-none-any.whl └── force_backup_automator-1.4.tar.gz ├── force_backup_automator.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── not-zip-safe ├── requires.txt └── top_level.txt ├── force_backup_automator ├── .DS_Store ├── BackupController.py ├── __init__.py └── __pycache__ │ ├── BackupController.cpython-38.pyc │ └── Login.cpython-38.pyc ├── license.txt ├── setup.cfg └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/README.md -------------------------------------------------------------------------------- /dist/force_backup_automator-1.4-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/dist/force_backup_automator-1.4-py3-none-any.whl -------------------------------------------------------------------------------- /dist/force_backup_automator-1.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/dist/force_backup_automator-1.4.tar.gz -------------------------------------------------------------------------------- /force_backup_automator.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator.egg-info/PKG-INFO -------------------------------------------------------------------------------- /force_backup_automator.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /force_backup_automator.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force_backup_automator.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force_backup_automator.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | requests 3 | selenium 4 | beautifulsoup4 5 | urllib3 6 | -------------------------------------------------------------------------------- /force_backup_automator.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | force_backup_automator 2 | -------------------------------------------------------------------------------- /force_backup_automator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator/.DS_Store -------------------------------------------------------------------------------- /force_backup_automator/BackupController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator/BackupController.py -------------------------------------------------------------------------------- /force_backup_automator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator/__init__.py -------------------------------------------------------------------------------- /force_backup_automator/__pycache__/BackupController.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator/__pycache__/BackupController.cpython-38.pyc -------------------------------------------------------------------------------- /force_backup_automator/__pycache__/Login.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/force_backup_automator/__pycache__/Login.cpython-38.pyc -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/license.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzepeda/force-backup-automator/HEAD/setup.py --------------------------------------------------------------------------------