Parsing Javascript Dictionary¶
- class qqqr.utils.jsjson.AstLoader¶
AstLoader
uses standardast
module to parse the js/json- classmethod json_loads(js, filename='stdin')¶
The
json_loads()
function loads a JSON object from a js/json string. It uses standardast
module to parse the js/json.
- qqqr.utils.jsjson.json_loads(js)¶
The
json_loads()
function converts a string representation of JS/JSON data into a Python object. Current implementation is usingast
.If you need more parameters or another implementation, call
xxxLoader.json_loads
instead.