Skip to main content

PostgreSQL metadata grabber and comparer

Project description

PostgreSQL metadata (DDL) grabber and comparer

Dependencies

Installation

pip install psycopg2 pg-metadata

Usage

1 ) Create file _Connect.py with connection params:

# Source database for comparing
# Database for grabbing
PG_SOURCE = {
    "host"      : "",
    "port"      : 5432,
    "database"  : "",
    "username"  : "",
    "password"  : "",
}

# Target database for comparing
PG_TARGET = {
    "host"      : "",
    "port"      : 5432,
    "database"  : "",
    "username"  : "",
    "password"  : "",
}

# Excluded namespaces
EXCLUDE_SCHEMAS = [
    "information_schema",
    "pg_catalog",
    "pg_temp",
    "pg_temp_1",
    "pg_toast",
    "pg_toast_temp_1"
]

# Path with compare folder
PATH_COMPARE = "./compare"

2 ) To grab database metadata run zzz_Grabber.py.

3 ) To compare databases run zzz_Compare.py.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pg_metadata-0.5.4.tar.gz (14.1 kB view hashes)

Uploaded Source

Built Distribution

pg_metadata-0.5.4-py3-none-any.whl (25.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page