├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── prestic ├── __init__.py └── prestic.py ├── restic-icon.png ├── screenshot.png └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .vscode/ 3 | build/ 4 | dist/ 5 | *.egg-info/ 6 | test-repo/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/README.md -------------------------------------------------------------------------------- /prestic/__init__.py: -------------------------------------------------------------------------------- 1 | from .prestic import * 2 | -------------------------------------------------------------------------------- /prestic/prestic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/prestic/prestic.py -------------------------------------------------------------------------------- /restic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/restic-icon.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducalex/prestic/HEAD/setup.py --------------------------------------------------------------------------------