The package helps you to find a difference between two mutable Python types.
Just simply install the package from PyPi:
pip install dffr
Associate the package from a Python console:
>>> from dffr.utils import find_diff
>>> find_diff({'a': 1}, {'a': 1, 'b': 2})
defaultdict(<class 'list'>, {'b': [2]})