Home | History | Annotate | Download | only in simplejson

Lines Matching full:json

2 A simple, fast, extensible JSON encoder and decoder
4 JSON (JavaScript Object Notation) <http://json.org> is a subset of
45 Decoding JSON::
57 Specializing JSON object decoding::
86 Note that the JSON produced by this module's default settings
112 Serialize ``obj`` as a JSON formatted stream to ``fp`` (a
131 in strict compliance of the JSON specification, instead of using the
134 If ``indent`` is a non-negative integer, then JSON array elements and object
140 ``(',', ':')`` is the most compact JSON representation.
170 Serialize ``obj`` to a JSON formatted ``str``.
186 strict compliance of the JSON specification, instead of using the
189 If ``indent`` is a non-negative integer, then JSON array elements and
196 ``(',', ':')`` is the most compact JSON representation.
223 a JSON document) to a Python object.
235 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
245 Deserialize ``s`` (a ``str`` or ``unicode`` instance containing a JSON
256 can be used to implement custom decoders (e.g. JSON-RPC class hinting).
271 json-py API compatibility hook. Use loads(s) instead.
280 json-py API compatibility hook. Use dumps(s) instead.