dffr

Find a difference between two mutable Python types.


Keywords
diff, mutable, python
License
MIT
Install
pip install dffr==0.0.2

Documentation

License: MIT Build Status Coverage Status Codacy Badge Documentation Status

dffr

The package helps you to find a difference between two mutable Python types.

Kick start

Just simply install the package from PyPi:

pip install dffr

Next steps

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]})