Apply JSON-Patches (RFC 6902) with extensions
Project description
python-json-patch-ext
Applying JSON Patches in Python
This module extends the Python jsonpatch module to add 'check', 'mutate' and 'merge' operations.
See source code for examples
- Website: https://github.com/RangelReale/python-json-patch-ext
- Repository: https://github.com/RangelReale/python-json-patch-ext.git
- Documentation: https://python-json-patch-ext.readthedocs.org/
- PyPI: https://pypi.python.org/pypi/jsonpatchext
Example
from jsonpatchext import JsonPatchExt, JsonPatchTestFailed
def StartsWithComparator(current, compare):
if not current.startswith(compare):
msg = '{0} ({1}) does not starts with {2} ({3})'
raise JsonPatchTestFailed(msg.format(current, type(current), compare, type(compare)))
def RemoveLastMutator(current, value):
return current[:-1]
patch = JsonPatchExt([
{'op': 'add', 'path': '/foo', 'value': {'bar': 'bar'}},
{'op': 'check', 'path': '/foo/bar', 'value': 'bar', 'cmp': 'equals'},
{'op': 'merge', 'path': '/foo', 'value': {'newbar': 'newbarvalue'}},
{'op': 'check', 'path': '/foo/newbar', 'value': 'newb', 'cmp': 'custom', 'comparator': StartsWithComparator},
{'op': 'mutate', 'path': '/foo/newbar', 'mut': 'uppercase'},
{'op': 'mutate', 'path': '/foo/newbar', 'mut': 'custom', 'mutator': RemoveLastMutator},
])
doc = {}
result = patch.apply(doc)
print(result)
checkpatch = JsonPatchExt([
{'op': 'check', 'path': '/foo/bar', 'value': 'bar', 'cmp': 'equals'},
{'op': 'check', 'path': '/foo/newbar', 'value': 'NEWB', 'cmp': 'custom', 'comparator': StartsWithComparator},
])
result = checkpatch.check(result)
print(result)
Output:
{'foo': {'bar': 'bar', 'newbar': 'NEWBARVALU'}}
True
Author
Rangel Reale (rangelspam@gmail.com)
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
jsonpatchext-1.36.tar.gz
(8.3 kB
view details)
Built Distribution
File details
Details for the file jsonpatchext-1.36.tar.gz
.
File metadata
- Download URL: jsonpatchext-1.36.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b3c460030327b71715d0f841c93ef82d191199f9414ed0a8712017327df62c2 |
|
MD5 | 30593fc860abec931a2d3d20a1c7998e |
|
BLAKE2b-256 | 5112053486769647f81bf2c9dfeff300397ebc7e701b3bb160dfd6415ee5e5e1 |
File details
Details for the file jsonpatchext-1.36-py2.py3-none-any.whl
.
File metadata
- Download URL: jsonpatchext-1.36-py2.py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9107abe845c69b9e8f23b72909df63360320ba81c85ed27a4e10c70c22eb229c |
|
MD5 | c095270f035bd028ed8e4952d8758b96 |
|
BLAKE2b-256 | 4dfff744de4fc5ae3f39c322be30f7df384e38ebab97518418a4870aa3a74bfc |