Index of the simplejson module
-
m
simplejson
...
- A simple, fast, extensible JSON encoder and decoder
- f load ... - Deserialize fp (a .read()-supporting file-like object containing a JSON document) to a Python object.
- f dump ... - Serialize obj as a JSON formatted stream to fp (a .write()-supporting file-like object).
- f dumps ... - Serialize obj to a JSON formatted str.
- f loads ... - Deserialize s (a str or unicode instance containing a JSON document) to a Python object.