loaders ยป json
json() โ dict/list/value
json_items() โ list
json_list() โ list
Parses the value as JSON and returns the result (or passes on the parser error for malformed JSON).
eno-- json payload
{
"status": 500
}
-- json payload
python>>> document = Eno.parse(input)
>>> document.json('json payload')
{ 'status': 500 }