Implementation of the json-patch spec
Project description
JSON Patch
Implementation of json-patch draft 04:
http://tools.ietf.org/html/draft-pbryan-json-patch-04
Installation
$ pip install json_patch
Usage
JSON patch makes it possible to patch arbitrary json objects
>>> from json_patch import Patch >>> patch = Patch([ { 'op': 'add' 'path': '/c', 'value': 'f' }, { 'op': 'remove': 'path': '/a' }, { 'op': 'replace' 'path': '/b', 'value': 'g' } ]) >>> data = {'a': 'd', 'b': 'e'} >>> print patch.apply(data) {'b': 'g', 'c': 'f'}
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
json_patch-0.1.tar.gz
(2.5 kB
view hashes)