-
Notifications
You must be signed in to change notification settings - Fork 0
A Python Project that can be used to backup some of the most used databases
License
iamb4uc/DB-Backup-Utility
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
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
About
A Python Project that can be used to backup some of the most used databases