I have a txt file with has data like this:
[{"text" : "Random Text" , "location" : "place" , "date" : "01 Jan,2012"},
{"text" : "Similar texts" , "location" : "xyz" , "date": "02 Jan, 2020" },
...}]
How do I read this txt file in python and store the data in a dataframe?
Please help.
I tried using various delimiters but the results are pretty messed up.