ujson – JSON encoding and decoding¶
This modules allows to convert between Python objects and the JSON data format.
Functions¶
- ujson.dumps(obj)¶
Return
objrepresented as a JSON string.
- ujson.loads(str)¶
Parse the JSON
strand return an object. Raises ValueError if the string is not correctly formed.