Skip to main content

Compare configuration files across environments

Project description

philiprehberger-config-diff

Tests PyPI version Last updated

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:

Star the repo

🐛 Report issues

💡 Suggest features

❤️ Sponsor development

🌐 All Open Source Projects

💻 GitHub Profile

🔗 LinkedIn Profile

License

MIT

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

philiprehberger_config_diff-0.4.0.tar.gz (179.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

philiprehberger_config_diff-0.4.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_config_diff-0.4.0.tar.gz.

File metadata

File hashes

Hashes for philiprehberger_config_diff-0.4.0.tar.gz
Algorithm Hash digest
SHA256 734c85afea25e6379b56464e03566e431a62e341fc5d220cc37ec3a55396ab73
MD5 fd2e9abdd6fa0d001d1a64d91a01391e
BLAKE2b-256 31987b3c967013cc0355dcf79d50481042c902ad146643b02f52dd3f92f30ce8

See more details on using hashes here.

File details

Details for the file philiprehberger_config_diff-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_config_diff-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 51ac8b869ebdfc2de7fa46b27cb1f4251245f89789652709a544ce3b2f5e29eb
MD5 2ba7a87e9e5dbccb2a36f86fa594398b
BLAKE2b-256 28fcbbf3724c78ea65e0c6134d7e3bdee4738ef66f5f0e21986fcd16a4e73f4b

See more details on using hashes here.

Supported by

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