├── .env.example ├── .gitignore ├── README.md ├── api_request.py ├── backup.py ├── common.py ├── config.py ├── install-venv.sh ├── post_backup_example.sh └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/README.md -------------------------------------------------------------------------------- /api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/api_request.py -------------------------------------------------------------------------------- /backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/backup.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/common.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/config.py -------------------------------------------------------------------------------- /install-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/install-venv.sh -------------------------------------------------------------------------------- /post_backup_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fz77z/pterodactyl-automated-backups/HEAD/post_backup_example.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-dotenv 3 | urllib3 4 | logprise 5 | --------------------------------------------------------------------------------