Skip to main content

A Python library for comparing nested data structures with detailed diff reporting and interactive navigation.

Project description

diffgetr

A Python library for comparing nested data structures with detailed diff reporting and interactive navigation.

Features

  • Compare deeply nested dictionaries and lists with customizable precision
  • Side-by-side tabular comparison with percentage changes for numeric values
  • Summarize differences with key frequency counts and pattern recognition
  • Navigate interactively through diff results using dictionary-like syntax
  • Support for array indexing and complex nested paths
  • Multiple output formats: summary, detailed, and tabular side-by-side
  • UUID and CSV pattern recognition for cleaner diff summaries
  • Configurable DeepDiff parameters for fine-tuned comparisons
  • Option to ignore added items for focused change analysis
  • Command-line tool for JSON file comparison with path navigation

Installation

Use Pip:

pip install diffgetr

Usage

As a Library

Basic Usage

from diffgetr import Diffr

# Basic comparison
diff = Diffr(obj1, obj2)
print(diff)  # Prints a summary of differences

# Navigate to specific parts
sub_diff = diff['key1']['nested_key']
print(sub_diff)

Advanced Configuration

# Custom DeepDiff parameters
diff = Diffr(
    obj1, obj2,
    deep_diff_kw={'significant_digits': 5, 'ignore_string_case': True},
    ignore_added=True  # Focus only on changes and removals
)

# Different output formats
diff.diff_summary()        # Print summary to stdout
diff.diff_all(indent=4)    # Print full diff details
diff.diff_sidebyside()     # Tabular side-by-side comparison with % changes
raw_diff = diff.diff_obj   # Access underlying DeepDiff object

Interactive Navigation

# Navigate through nested structures
diff = Diffr(data1, data2)

# Use tab completion to see available keys
dir(diff)  # Shows common keys between both datasets

# Navigate with array indices
item_diff = diff['items'][0]['properties']

# Check current location
print(diff.location)  # Shows path like 'root.items[0].properties'

Path Pattern Matching

# Find all diffs matching a wildcard pattern
for df in diff.path_diffs('root.models.*.windows.-1.model.calculations'):
    print('#'*80)
    print(df.path)
    print(df.diff_sidebyside())

This allows you to:

  • Use * wildcards to match any key name, and easily check parts of complex json package

Command Line

diffgetr file1.json file2.json path.to.key

Parameters:

  • file1.json, file2.json: JSON files to compare
  • path.to.key: Dot-separated path to navigate in the structure

Path Examples:

  • users.0.profile - Navigate to first user's profile
  • data.items[5].name - Navigate to name of 6th item
  • config.database - Navigate to database configuration

API Reference

Constructor Parameters

Diffr(s0, s1, loc=None, path=None, deep_diff_kw=None, ignore_added=False)

Parameters:

  • s0, s1: Objects to compare
  • loc: Internal location tracking (used recursively)
  • path: Path component to append to location
  • deep_diff_kw: Dictionary of parameters passed to DeepDiff (default: {'ignore_numeric_type_changes': True, 'significant_digits': 3})
  • ignore_added: If True, ignore items that were added in s1 but not in s0

Methods

diff_summary(file=None, top=50, bytes=None)

Generate a summary of differences with pattern recognition and frequency counts.

Parameters:

  • file: Output file object (default: stdout)
  • top: Maximum number of diff patterns to show per category
  • bytes: Whether to write bytes (auto-detected if None)

diff_all(indent=2, file=None)

Print complete diff details with full data structures.

Parameters:

  • indent: Indentation level for pretty printing
  • file: Output file object (default: stdout)

diff_sidebyside()

Display differences in a tabular side-by-side format with percentage changes for numeric values.

Features:

  • Flattens nested structures into dot-notation keys
  • Groups missing/added keys by parent for compact display
  • Groups differences by common parent keys
  • Shows percentage differences for numeric values
  • Filters changes based on significant digits threshold
  • Displays missing keys as <MISSING>
  • Sorts by frequency of changes within each group

Properties

  • location: Current path in dot notation (e.g., 'root.data.items[0]')
  • diff_obj: Underlying DeepDiff object for advanced operations

Pattern Recognition

The tool automatically recognizes and abstracts common patterns:

  • UUIDs: Replaced with <UUID> for cleaner summaries
  • CSV-like numbers: Numeric sequences replaced with <CSV>
  • Path normalization: Consistent path formatting across different access patterns

Error Handling

When navigating to non-existent keys, the tool will:

  1. Display a diff summary showing available keys
  2. Raise a KeyError with location information
  3. Continue execution for batch operations

Examples

Comparing Configuration Files

import json
from diffgetr.diff_get import Diffr

with open('config_v1.json') as f1, open('config_v2.json') as f2:
    config1 = json.load(f1)
    config2 = json.load(f2)

diff = Diffr(config1, config2, ignore_added=True)
print(f"Changes found at: {diff.location}")
diff.diff_summary(top=20)

Analyzing API Response Changes

# Compare two API responses with high precision
diff = Diffr(
    response1, response2,
    deep_diff_kw={'significant_digits': 6, 'ignore_order': True}
)

# Navigate to specific sections
user_diff = diff['users'][0]['profile']
if user_diff:
    user_diff.diff_all()

Side-by-Side Comparison

# For detailed tabular comparison with percentage changes
diff = Diffr(financial_data_old, financial_data_new)
diff.diff_sidebyside()

# Output example:
# KEY                                                          | s0                           | s1                           | % DIFF    
# -------------------------------------------------------------------------------------------------------------
# 
# GROUP: root.quarterly_results
# - .q1.revenue                    | 1250000.0                    | 1340000.0                    |     7.200%
# - .q1.expenses                   | 980000.0                     | 1020000.0                    |     4.082%
# - .q2.revenue                    | 1180000.0                    | 1290000.0                    |     9.322%
# 
# GROUP: root.metadata
# - .last_updated                  | "2024-12-01"                 | "2025-01-15"                 
# - .version                       | "1.2.3"                      | "1.3.0"

Testing

Run the comprehensive test suite to verify functionality:

python -m unittest discover tests -v

The test suite covers: • Core diff functionality and navigation through nested structures • Multiple output formats (summary, detailed, side-by-side) • Pattern recognition for UUIDs and CSV-like data • Error handling and edge cases • IPython integration and tab completion • Command-line interface functionality

Contributing

This tool is part of the Ottermatics projects ecosystem. When contributing:

  1. Maintain backward compatibility with existing APIs
  2. Add tests for new pattern recognition features
  3. Update documentation for any new navigation capabilities
  4. Consider performance impact for large nested structures

Version History

  • 0.1.0: Initial release with basic diff comparison
  • Current: Enhanced with interactive navigation, pattern recognition, and configurable output formats

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

diffgetr-0.2.2.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

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

diffgetr-0.2.2-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file diffgetr-0.2.2.tar.gz.

File metadata

  • Download URL: diffgetr-0.2.2.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diffgetr-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a25916a15aa524269d1cab33c0c2f39142e6b15ebe43896d0a9a277c6edabad7
MD5 d48191de7092f4cac120980dd7e08ff8
BLAKE2b-256 92b87b3b1e5f8f42f727630b6b542708050b55d3dd7086c492a102d31ee51b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diffgetr-0.2.2.tar.gz:

Publisher: main.yml on Ottermatics/diffgetr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diffgetr-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: diffgetr-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diffgetr-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 28d4642e0a8b46d61e00bb077e4c217ecbaf1a7e4eaf21e836f60ec1de4e0fc7
MD5 4f002c9d0f939c706a1db06065e3d7ea
BLAKE2b-256 fbeb361576420a59e330b2f72ff229e880985a9b2060a6312dff09a3d09b8b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for diffgetr-0.2.2-py3-none-any.whl:

Publisher: main.yml on Ottermatics/diffgetr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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