My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members

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.

Powered by Google Project Hosting