Skip to content

danvk/pyjsonselect

Repository files navigation

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

About

Fully conformant implementation of JSONSelect in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages