I have a string in this format:
{apple:"34253453",oranges:"Sweet",x:"COOL"},{apple:"34222453",oranges:"Dry",x:"WARM"},{apple:"31113453",oranges:"Bitter",x:"HOT"},{apple:"38883453",oranges:"Sweet",x:"COOL"}
And looking to create a dataframe with the column labels as 'apple','oranges','x' and the values placed in their respective rows.
I've tried to use this solution: Python convert comma separated list to pandas dataframe as well as ast.literal_eval to convert it into a list before transforming it into a dataframe but to no luck.