prettydiff

Pretty JSON data diffs


Keywords
diff, json, python
License
MIT
Install
pip install prettydiff==0.1.0

Documentation

prettydiff

prettydiff - diff parsed JSON objects and pretty-print it

$ python3 -m pip install prettydiff

terminal

from prettydiff import print_diff

a = {"a": "hello", "b": True, "c": [1, 3], "d": {"e": {"f": 1}}}
b = {"a": "world", "b": False, "c": [1, 2, 3]}

# to enable colors: $ python3 -m pip install prettydiff[terminal]
print_diff(a, b)
  {
-   'a': 'hello',
+   'a': 'world',
-   'b': True,
+   'b': False,
    'c': [
      1,
-     3,
+     2,
+     3,
    ],
-   'd': {
-     'e': {
-       'f': 1,
-     },
-   },
  }