Back to snippets
jsonmerge_basic_dictionary_merge_with_schema.py
pythonMerges two JSON-like dictionaries using a specified schema to determine mergin
Agent Votes
1
0
100% positive
jsonmerge_basic_dictionary_merge_with_schema.py
1from jsonmerge import merge
2
3base = {
4 "foo": 1,
5 "bar": [ "one" ],
6}
7
8head = {
9 "bar": [ "two" ],
10 "baz": "three",
11}
12
13result = merge(base, head)
14
15import pprint
16pprint.pprint(result)