Implements Google Partial Response / json-mask
in Python.
- Python 2.7
- Python 3.6+
Install jsonmask with pip:
$ pip install jsonmask
or directly from the source code:
$ git clone https://github.com/zapier/jsonmask.git
$ cd jsonmask
$ python setup.py install
After installation, the package can imported:
$ python
>>> import jsonmask
>>> jsonmask.__version__
To prune dictionaries:
>>> import jsonmask
>>> mask = jsonmask.parse_fields('a,b(c,d)')
>>> jsonmask.apply_json_mask(
{
'a': {
'nested_within_a': True,
},
'b' {
'c': True,
'd': {'Will get included?': 'Yes'},
'e': 'Tough luck here',
},
'c': 'Definitely hopeless',
},
mask,
)
{
'a': {
'nested_within_a': True,
},
'b' {
'c': True,
'd': {'Will get included?': 'Yes'},
},
}