Skip to content

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

License

Notifications You must be signed in to change notification settings

iamb4uc/DB-Backup-Utility

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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