Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamb4uc/db-backup-utility
A Python Project that can be used to backup some of the most used databases
https://github.com/iamb4uc/db-backup-utility
aws backup cryptography database database-backup-scripts database-management mysql postgresql python3 s3-bucket script
Last synced: 15 days ago
JSON representation
A Python Project that can be used to backup some of the most used databases
- Host: GitHub
- URL: https://github.com/iamb4uc/db-backup-utility
- Owner: iamb4uc
- License: gpl-3.0
- Created: 2024-09-10T14:46:20.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T18:59:49.000Z (2 months ago)
- Last Synced: 2024-10-17T12:51:15.315Z (about 1 month ago)
- Topics: aws, backup, cryptography, database, database-backup-scripts, database-management, mysql, postgresql, python3, s3-bucket, script
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
FILE STRUCTURE
DB Backup Utility/
│
├── backup_tool/
│ ├── __init__.py
│ ├── main.py
│ ├── config.py
│ ├── utils/
│ │ ├── __init__.py
│ │ ├── connectors/
│ │ │ ├── __init__.py
│ │ │ ├── mysql.py
│ │ │ ├── postgresql.py
│ │ │ └── oracle.py
│ │ ├── compression.py
│ │ ├── cloud_storage.py
│ │ └── logging_config.py
│ ├── backup/
│ │ ├── __init__.py
│ │ ├── full_backup.py
│ │ ├── incremental_backup.py
│ │ └── differential_backup.py
│ └── restore/
│ ├── __init__.py
│ └── restore.py
├── requirements.txt
├── README.md
├── config.yaml
└── logs/
└── backup.log