A simple library to create a minimal diff of two json compatible dictionaries
Project description
Json Dict Diff
Library for creating a minimal diff of two json-compatible python dictionaries.
This library can be used to compare two json-compatible python dictionaries (i.e. dictionaries/lists/... containing only the following primitives: int, float, str, list, dict, set, tuple, bool
) and generates a "minimal" diff.
The diff is represented as a dictionary where insertions/deletions/substititons are represented as tuples.
E.g the following two dictionaries:
diff(
{ "a": [ { "b": 1, "c": True }, 1.0, "x" ], "d": 1 },
{ "a": [ { "b": 2, "c": True }, 1.0, "y", True ] }
)
will result in the following diff:
{ "a": [ { "b": (1, 2) }, ("x", "y"), (None, True) ], "d": (1, None) }
Here the tuples (1, 2), ("x", "y"), (None, True), (1, None)
represent the substitions that happened.
None
implies that a object was either removed or added.
If there is no diff (e.g.: diff({ "a": 1 }, { "a": 1 })
) the result will be None
. In this sense,
the library can also be used to compare two json-compatible dictionaries.
If a object of any different type is used anywhere in a dict/list/..., a ValidationException
will be raised.
Exports
JDict = Union[int, float, str, List["Result"], Dict[str, "Result"], Tuple["Result"], Set["Result"], None]
class ValidationException
def validate(a: JDict):
def diff(a: JDict, b: JDict) -> JDict:
Notes
Primitive objects such as ints/floats/... can also be diffed which will result in a single tuple of a substition. E.g:
diff("a", "b") == ("a", "b")
diff("a", "a") is None
The diff will treat lists, sets and tuples as lists which means that the result will contain lists instead of sets or tuples. This is due to tuples being reserved for the substitution results.
If it might not be clear which element in a list might be substituted, this library makes no guarantees on the actual substitution. E.g:
diff([1, 2, 3], [1, 4, 5])
can result either in: [ (2, 4), (3, 5) ]
or [ (3, 4), (2, 5) ]
.
None
elements might or might not show up as a diff
E.g:
diff([ None, 1 ], [1])
might result in [ (None, 1) ]
or None
(i.e. no diff).
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
Built Distribution
Hashes for json_dict_diff-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2efebf5287087167d68b588290088be1fdca19fbe282dc8d2e7d555235b4d9c1 |
|
MD5 | c93a2c6ab7788c427d31a9ec40e99624 |
|
BLAKE2b-256 | 19e9fc242574e5f681a14cf3fb5d2cdf6a8a09651e70dd6985e3848c30d5117d |