I am confused on how to go about parsing an array list from a .csv file. The .csv file gives information on a daily basis, in this format:
{
"a" : 1,
"b" : 3,
"d" : 10
},
The open bracket shows the new day of data, and the closing bracket followed by the comma ends the data (I have no way of changing how the .csv is generated). There are about 400 days worth of data, and each day has the same list items (a,b, and d). How would I go about parsing the .csv data into a readable list format in python? I would post example code, but I have no idea where to even start with this.
Thanks in advance!
aandbfields (e. g. is it{"a" : 1, "b": 3or{"a" : 1 "b" : 3as in your example)?