dictmerge

Merge dicts without mutating them.

OTHER License

Downloads
212
Stars
16
Committers
2

dictmerge

Merge dicts without mutating them.

>>> d1 = {'a': 1}
>>> d2 = {'b': 2}
>>> dictmerge(d1, d2, moar=3)
{'a': 1, 'b': 2, 'moar': 3}

As of Python 3.9 you can use the following syntax for this purpose:

>>> d1 = {'a': 1}
>>> d2 = {'b': 2}
>>> d1 | d2
{'a': 1, 'b': 2}
>>> d1 | d2 | {'moar': 3}
{'a': 1, 'b': 2, 'moar': 3}
>>>

As of Python 3.5 you can also use the following syntax for this purpose:

>>> d1 = {'a': 1}
>>> d2 = {'b': 2}
>>> {**d1, **d2}
{'b': 2, 'a': 1}
>>> {**d1, **d2, 'moar': 3}
{'b': 2, 'moar': 3, 'a': 1}

Installation

$ pip install dictmerge