I have a file which has the same structure as python list / dictionaries, i.e.
[
{
"key1" : "value1",
"key2" : "value2",
...
},
{
"key1" : "value3",
"key2" : "value4",
...
},
...
]
Is there some easy way how to read this file and convert it into a list of dictionaries?