|
Project Information
|
A JSON parser designed for strict compliance with RFC 4627, built using the PLY (Python Lex-Yacc) library. Example usage: >>> import jsonply
>>> jsonply.parse('{"foo": "bar", "arr": [1, {"a": -2.50e4}, true]}')
{u'arr': [1, {u'a': -25000.0}, True], u'foo': u'bar'}See the source code and the test suite for details. |