Automation of the creation of backups of Postgres databases
Project description
Backup Postgres Database
Basic Usage
This simple Python package allows you to create easily the database backup of Postgres databases. You can upload them to cloud storage buckets by creating a cron job.
from postgres_backup import Backup
# Instantiate the backup object with Postgres database_uri
backup = Backup(database_uri)
# Create the file for backup
backup.create()
Note that the URI has the following structure: db:engine:[//[user[:password]@][host][:port]/][dbname]
Bucket Storage
Have provided also the ability to store those backups in cloud buckets.
Google Cloud Storage
For using this functionality, you need to install the dependencies needed of the package:
pip3 install postgres-backup[gcs]
And then after we have the backup created, we would keep following with:
# Create the backup
backup.create()
# Upload it to google cloud storage
backup.upload(
provider=CloudProviders.gcs.value,
bucket_name=bucket_name,
google_cloud_certification
)
Where the google_cloud_certification
is a dictionary, with the key-values of the client api keys:
- type
- project_id
- private_key_id
- private_key
- client_email
- client_id
- auth_uri
- token_uri
- auth_provider_x509_cert_url
- client_x509_cert_url
An example would be:
google_cloud_credentials = {
type: "service_account",
project_id: "xxx-saas",
private_key_id: "xxxxxxxx",
private_key: "-----BEGIN PRIVATE KEY-----\nxxxxxxxxxx\n-----END PRIVATE KEY-----\n",
client_email: "xxx@xxx-saas.iam.gserviceaccount.com",
client_id: "xxx",
auth_uri: "https://accounts.google.com/o/oauth2/auth",
token_uri: "https://oauth2.googleapis.com/token",
auth_provider_x509_cert_url: "https://www.googleapis.com/oauth2/v1/certs",
client_x509_cert_url: "https://www.googleapis.com/robot/v1/metadata/x509/xxx%xxx-saas.iam.gserviceaccount.com"
}
In the case that we do not have a bucket already created for storing the backups, we could add additional parameters to create it:
from postgres_backup.schemas import CloudStorageType, CloudProviders
backup.upload(
provider=CloudProviders.gcs.value,
bucket_name=bucket_name,
google_cloud_certification,
create_bucket=True,
storage_class=CloudStorageType.STANDARD.value
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file postgres-backup-0.0.4.tar.gz
.
File metadata
- Download URL: postgres-backup-0.0.4.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b246b0fe8d8135e09945a5200c3c6ff921fa3953beff2450f80238d10d494f22 |
|
MD5 | 515b27896cfa4ee41877df37d50ebbe9 |
|
BLAKE2b-256 | 1d823838181acd1fbf4e3bb634fb4eb31fa119d67a5775f404b5b9863af4c405 |
File details
Details for the file postgres_backup-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: postgres_backup-0.0.4-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55170caa6cf526e6c5435cecb9a7fbd6ff3b10da49f11418332442f425fa8264 |
|
MD5 | becdd631991592643711539590b53591 |
|
BLAKE2b-256 | 127f4c60f5c0fa4e46ed33d664a55944e90daf6e9549ed6bea31d7a0e30c29c2 |