px
pypx

deepmerge

v3.0

A toolset for deeply merging Python dictionaries.

15 KB Python 3.8+ py3-none-anyMIT License1 deps
Diff
$ uv add deepmerge

=========

deepmerge

A tool to handle merging of nested data structures in Python.

------------

Installation

deepmerge is available on pypi:

pip install deepmerge

-------

Example

Generic Strategy

from deepmerge import always_merger

base = {"foo": ["bar"]}
next = {"foo": ["baz"]}

expected_result = {'foo': ['bar', 'baz']}
result = always_merger.merge(base, next)

assert expected_result == result

Custom Strategy

from deepmerge import Merger

my_merger = Merger(
    # pass in a list of tuple, with the
    # strategies you are looking to apply
    # to each type.
    [
        (list, ["append"]),
        (dict, ["merge"]),
        (set, ["union"])
    ],
    # next, choose the fallback strategies,
    # applied to all other types:
    ["override"],
    # finally, choose the strategies in
    # the case where the types conflict:
    ["override"]
)
base = {"foo": ["bar"]}
next = {"bar": "baz"}
my_merger.merge(base, next)
assert base == {"foo": ["bar"], "bar": "baz"}

You can also pass in your own merge functions, instead of a string.

For more information, see the docs

------------------

Supported Versions

deepmerge is supported on Python 3.8+.

For older Python versions the last supported version of deepmerge is listed below:

  • 3.7 : 1.1.1

Details

Version
3.0
License
MIT License
Python
>=3.8
Maintainer
Yusuke Tsutsumi <[email protected]>

Release Cadence

2
releases in the past year
avg 169 days between releases

Maintainers