I got the following json: {u\'a\': u\'aValue\', u\'b\': u\'bValue\', u\'c\': u\'cValue\'} by doing request.json in my python code. Now, I want to c
{u\'a\': u\'aValue\', u\'b\': u\'bValue\', u\'c\': u\'cValue\'}
request.json
For python 2.x
import yaml import json json_data = yaml.load(json.dumps(request.json()))
Now this json_data can be used as a json and can have list of json as well.