Compare configuration files across environments
Project description
philiprehberger-config-diff
Compare configuration files across environments.
Installation
pip install philiprehberger-config-diff
Usage
from philiprehberger_config_diff import diff_files, diff_dicts
# Compare files (JSON, TOML, INI, .env)
report = diff_files("config.dev.json", "config.prod.json")
for change in report.changes:
print(change) # "+ db.name = 'proddb'" / "~ port: 3000 -> 8080"
print(report.summary())
# "Added: 3, Removed: 1, Modified: 5"
# Filter by key patterns
report = diff_files("dev.env", "prod.env", include=["DB_*"])
# Compare dicts directly
report = diff_dicts(dev_config, prod_config)
Regex filter patterns
include and exclude accept compiled re.Pattern objects alongside glob strings, which is handy for redacting secret keys by suffix or prefix.
import re
from philiprehberger_config_diff import diff_dicts
report = diff_dicts(
dev_config,
prod_config,
exclude=[re.compile(r".*_token$"), re.compile(r"^secret\.")],
)
Serializing diffs
DiffReport.to_dict() returns a JSON-serializable representation, and
DiffReport.is_empty() is a quick check for "no changes" in scripts or CI gates.
import json
from philiprehberger_config_diff import diff_dicts
report = diff_dicts({"a": 1}, {"a": 2, "b": 3})
if report.is_empty():
print("No drift detected")
else:
print(json.dumps(report.to_dict(), indent=2))
# {
# "changes": [
# {"path": "a", "type": "modified", "old": 1, "new": 2},
# {"path": "b", "type": "added", "old": null, "new": 3}
# ]
# }
Unified diff output
from philiprehberger_config_diff import unified_diff
dev = {"db": {"host": "localhost", "port": 5432}}
prod = {"db": {"host": "prod-server", "port": 5432}}
print(unified_diff(dev, prod, left_label="dev", right_label="prod"))
# --- dev
# +++ prod
# @@ -1,2 +1,2 @@
# -db.host = 'localhost'
# +db.host = 'prod-server'
# db.port = 5432
API
| Function / Class | Description |
|---|---|
diff_files(left, right, include=None, exclude=None) |
Compare config files |
diff_dicts(left, right, include=None, exclude=None) |
Compare dicts |
unified_diff(left, right, *, context=3, left_label, right_label) |
Render diff -u style output |
report.changes |
List of Change objects |
report.added / report.removed / report.modified |
Filtered changes |
report.summary() |
Change count summary |
report.is_empty() |
True when the report contains no changes |
report.to_dict() |
JSON-serializable {"changes": [...]} representation |
Development
pip install -e .
python -m pytest tests/ -v
Support
If you find this project useful:
License
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 philiprehberger_config_diff-0.4.0.tar.gz.
File metadata
- Download URL: philiprehberger_config_diff-0.4.0.tar.gz
- Upload date:
- Size: 179.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
734c85afea25e6379b56464e03566e431a62e341fc5d220cc37ec3a55396ab73
|
|
| MD5 |
fd2e9abdd6fa0d001d1a64d91a01391e
|
|
| BLAKE2b-256 |
31987b3c967013cc0355dcf79d50481042c902ad146643b02f52dd3f92f30ce8
|
File details
Details for the file philiprehberger_config_diff-0.4.0-py3-none-any.whl.
File metadata
- Download URL: philiprehberger_config_diff-0.4.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51ac8b869ebdfc2de7fa46b27cb1f4251245f89789652709a544ce3b2f5e29eb
|
|
| MD5 |
2ba7a87e9e5dbccb2a36f86fa594398b
|
|
| BLAKE2b-256 |
28fcbbf3724c78ea65e0c6134d7e3bdee4738ef66f5f0e21986fcd16a4e73f4b
|