Skip to main content

a toolset to deeply merge python dictionaries.

Project description

https://travis-ci.org/toumorokoshi/deepmerge.svg?branch=master

A tools 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"])
    ],
    # 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

Tests

$ ./uranium test # runs pytest under the hood

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepmerge-0.2.1.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deepmerge-0.2.1-py2.py3-none-any.whl (7.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file deepmerge-0.2.1.tar.gz.

File metadata

  • Download URL: deepmerge-0.2.1.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7

File hashes

Hashes for deepmerge-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5fbd777507dd86c767048bddb2c50adf7da30f7688fe3f3f4e6ede6226dd4b20
MD5 3bbb6f44368d1cfabfbffe3e972ef39d
BLAKE2b-256 fd4af9fa10c28818ee24711ae5db4bfc07cc1b3cca4db3a058a11b7f666c1010

See more details on using hashes here.

File details

Details for the file deepmerge-0.2.1-py2.py3-none-any.whl.

File metadata

  • Download URL: deepmerge-0.2.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7

File hashes

Hashes for deepmerge-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8270901f85fbe249686236cb18bf4bccc69775da2c2e1fa35de3714d5d9d01b3
MD5 e7cd0e59b015f766f9d288916c2f1167
BLAKE2b-256 72893c310fb23c96ef2dcf8bab59dc500f53a06a1dd6d05ceec217331b097962

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page