simple_json 1.1

JSONDecoder

Simple JSON <http://json.org> decoder

Performs the following translations in decoding:

JSON Python
object dict
array list
string unicode
number (int) int, long
number (real) float
true True
false False
null None

It also understands NaN, Infinity, and -Infinity as their corresponding float values, which is outside the JSON spec.


Methods

f __init__(self, encoding=None) ...

See the source for more information.