I have a list of OrderedDicts like this:
input = [OrderedDict([('id', 'mp-1'), ('name', 'John')]), OrderedDict([('id', 'mp-2'), ('name', 'Peter')])]
How can I convert it to a list of normal dicts like this
output = [{'id': 'mp-1', 'name': 'John'}, {'id': 'mp-2', 'name': 'Peter'}]