Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 1 day ago
JSON representation

A Python Project that can be used to backup some of the most used databases

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