Metadata-Version: 2.1
Name: dictionary-diff
Version: 0.0.2
Summary: Get and apply diffs of python dictionaries
Home-page: https://github.com/JanLukasGithub/dict-diff
Author: Jan Lukas
Author-email: jan@garloff.de
Project-URL: Bug Tracker, https://github.com/JanLukasGithub/dict-diff/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# dict-diff
Dict diff is a python module that lets you get and apply diffs of python dictionaries

## Examples
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`

## Installation

### PyPI
This package is available on [PyPI](https://pypi.org/project/dictionary-diff/). Use `pip install dictionary-diff` to install it

## Contributing
Open an [issue](https://github.com/JanLukasGithub/dict-diff/issues) or a [pull request](https://github.com/JanLukasGithub/dict-diff/pulls)
