2014-10-31 18:21:37 -04:00
|
|
|
:mod:`ujson` -- JSON encoding and decoding
|
|
|
|
==========================================
|
2014-10-30 21:37:19 -04:00
|
|
|
|
|
|
|
.. module:: ujson
|
|
|
|
:synopsis: JSON encoding and decoding
|
|
|
|
|
|
|
|
This modules allows to convert between Python objects and the JSON
|
|
|
|
data format.
|
|
|
|
|
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
|
|
|
.. function:: dumps(obj)
|
|
|
|
|
|
|
|
Return ``obj`` represented as a JSON string.
|
|
|
|
|
|
|
|
.. function:: loads(str)
|
|
|
|
|
|
|
|
Parse the JSON ``str`` and return an object. Raises ValueError if the
|
|
|
|
string is not correctly formed.
|