PostgreSQL metadata grabber and comparer
Project description
Description
PostgreSQL metadata (DDL) grabber and database schema diff
Dependencies
Installation
pip install psycopg2-binary postgres-ddl
Grabbing
1 ) Create config file with connection params and other settings:
{
"connect": {
"host": "localhost",
"port": 5432,
"database": "db",
"username": "some_user",
"password": "some_password"
},
"path": "/some/path/to/grabber/result/folder",
"exclude_schemas": [
"information_schema",
"pg_catalog"
],
"threads": 8,
"new_line": "\n",
"indent": 2
}
2 ) By default script opens config file config_grab.json from the same directory as zzz_Grabber.py file.
3 ) Alternatively you can specify path to config file as a first run parameter.
4 ) Run grabber:
# Run with default config (config_grab.json)
python "zzz_Grabber.py"
# Run with specified config file path
python "zzz_Grabber.py" "/some/path/to/config.json"
Compare (diff) databases
1 ) Create config file with connection params and other settings:
{
"source": {
"host": "localhost",
"port": 5432,
"database": "db_from",
"username": "user",
"password": "password"
},
"target": {
"host": "localhost",
"port": 5432,
"database": "db_to",
"username": "user",
"password": "password"
},
"path": "/some/path/to/compare/result/folder",
"exclude_schemas": [
"information_schema",
"pg_catalog"
]
}
2 ) By default script opens config file config_diff.json from the same directory as zzz_Grabber.py file.
3 ) Alternatively you can specify path to config file as a first run parameter.
4 ) Run diff:
# Run with default config (config_grab.json)
python "zzz_Diff.py"
# Run with specified config file path
python "zzz_Diff.py" "/some/path/to/config.json"
Links
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file postgres_ddl-1.28.tar.gz.
File metadata
- Download URL: postgres_ddl-1.28.tar.gz
- Upload date:
- Size: 39.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2477346518a3d6b5187e0950ef4ffbeda958b774176d53ff958eabce3554286f
|
|
| MD5 |
6b98fe3e4b4d2edffa1047eb8ac0e005
|
|
| BLAKE2b-256 |
f0b7557d19d4f63efa903edd33c9e78569567a6a3b5076cb89f07eebeaa6a60c
|
File details
Details for the file postgres_ddl-1.28-py3-none-any.whl.
File metadata
- Download URL: postgres_ddl-1.28-py3-none-any.whl
- Upload date:
- Size: 56.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63fceadffa3af92730ce00d83f072d5e802583889d4225ed19c235d0d9f564b5
|
|
| MD5 |
72514da2ec60a754a2e904cc63478282
|
|
| BLAKE2b-256 |
08edcb0c5199b1af1122d5fa8ff8668806d27512411776234689130a0ac15fb2
|