pyjsonselect

Fully-compliant implementation of JSONSelect


Keywords
css, json, jsonselect
License
Other
Install
pip install pyjsonselect==0.2.2

Documentation

Build Status Coverage Status

pyjsonselect

A fully-conformant implementation of the JSONSelect standard in Python.

To install:

pip install pyjsonselect

To use:

import jsonselect

# prints 1, 2
for v in jsonselect.match('.foo', {'foo': 1, 'bar': {'foo': 2}}):
    print v

To run the tests:

git submodule update --init  # load conformance tests
pip install nose
nosetests