Dictionary with recursive additive and subtractive merging
Project description
MeldDict
A dict subclass that supports adding and subtracting other Mappings to perform recursive merging and removal.
By default, lists are also melded, but this can be configured. You can also have keys whose values are empty after a subtraction dropped automatically.
The full documentation is available online at: https://melddict.readthedocs.io/
Examples
You can add two mappings together to combine them:
meld_dict = MeldDict({'a': 'a',
'b': [1, 2],
'c': {'1': 1},
'd': 'd'})
norm_dict = {'b': [3, 4],
'c': {'2': 2},
'd': 'D',
'e': 'e'}
meld_res = meld_dict + norm_dict
meld_res == {'a': 'a',
'b': [1, 2, 3, 4],
'c': {'1': 1, '2': 2},
'd': 'D',
'e': 'e'}
meld_dict += norm_dict # a.k.a. meld_dict.add(norm_dict)
meld_dict == meld_res
You can also subtract one mapping from another:
meld_dict = MeldDict({'a': 'a',
'b': [1, 2],
'c': {'1': 1, '2': 2},
'd': 'd'})
norm_dict = {'b': [2, 3],
'c': {'2': 2, '3': 3},
'd': 'D',
'e': 'e'}
meld_res = meld_dict - norm_dict
meld_res == {'a': 'a',
'b': [1],
'c': {'1': 1}}
meld_dict -= norm_dict # a.k.a. meld_dict.subtract(norm_dict)
meld_dict == meld_res
Changelog
1.0.0
Tuesday Apr 3 2018
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
melddict-1.0.1.tar.gz
(8.1 kB
view details)
File details
Details for the file melddict-1.0.1.tar.gz
.
File metadata
- Download URL: melddict-1.0.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70ad91f4a7fb7ee32498e828604fe10c6ceb68a5779ca9d41e5469a6c24826ea |
|
MD5 | 8bcc83a69a9099592f61ea81e73737e9 |
|
BLAKE2b-256 | 8999c2dd9897264764544cb02de5fe0ffc277c091e973908b0894abe8900be7a |