21 lines
461 B
ReStructuredText
21 lines
461 B
ReStructuredText
|
|
:mod:`ujson` --- JSON encoding and decoding
|
||
|
|
===========================================
|
||
|
|
|
||
|
|
.. 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.
|