Dict diff is a python module that lets you get and apply diffs of python dictionaries
Use diff = diff(original_dict, another_dict)
to get the diff between the dictionaries
Use another_dict = apply_diff(original_dict, diff)
to get back another_dict
This package is available on PyPI. Use pip install dictionary-diff
to install it
Open an issue or a pull request