├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.cfg ├── setup.py ├── test ├── list_backup_counts.py ├── stop_all.py └── urbackup_api_test.py └── urbackup_api └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/setup.py -------------------------------------------------------------------------------- /test/list_backup_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/test/list_backup_counts.py -------------------------------------------------------------------------------- /test/stop_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/test/stop_all.py -------------------------------------------------------------------------------- /test/urbackup_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/test/urbackup_api_test.py -------------------------------------------------------------------------------- /urbackup_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uroni/urbackup-server-python-web-api-wrapper/HEAD/urbackup_api/__init__.py --------------------------------------------------------------------------------