Search and Mangle JSONable data, using css
style selectors,
and jQuery-like chainable methods. (Python port)
(based on lloyd's excellent JSONSelect project)
pip install jsonselect
>>> from jsonselect import J >>> J(".a")({'a':1, 'b': 'a':[1,2,3]) [1, [1,2,3]]
cd /path/to/json-select setup.py test
- fork this repo
- clone
- create a topic branch off
development
- file a bug / pull
To grab my changes...
git remote add gregglind git://github.com/gregglind/jsonselect-python.git git rebase gregglind/master # or upstream/development or whatnot