A manual solution to the union operation on dictionaries, in Python
Inspired by union_with
from Haskell.
Keep in mind that Python now has a union operator:
dict_one |= dict_two # union dict_two into dict_one
dict_union = dict_one | dict_two # dict_union is the union of dict_one and dict_two
In dict_and_union_with
, these instructions become:
union_with(dict_one, dict_two) # union dict_two into dict_one
dict_union = union_all_with(dict_union, [dict_one, dict_two]) # dict_union is the union of dict_one and dict_two
Open source available on GitHub and PyPI.
Install from pip:
py -m pip install dict_and_union_with
Update to the latest version from pip:
py -m pip install --upgrade dict_and_union_with
Uninstall from pip:
py -m pip uninstall dict_and_union_with
Run this command from the package directory on your filesystem:
py -m build
Open a new issue for support.