I currently my OrderedDict like below.
d = [OrderedDict([('id', u'570c737e87f8dc15788790b7'), ('name', u'Murgh ')]), OrderedDict([('id', u'570c737e87f8dc15788790b6'), ('name', u'Mushroom')])]
But here i need to convert this to normal dictionary format like below.
{"id": "570c737e87f8dc15788790b7","name": "Murgh"
},
{
"id": "570c737e87f8dc15788790b6","name": "Mushroom"
}
How to do this from python.