I have many strings like this:
"[{'id': 10749, 'name': 'Romance'}, {'id': 35, 'name': 'Comedy'}]"
But since I'm working with a dataframe, I need to convert them into JSON (or that's what it looks like by the format) so I can access and flatten the data. Any idea on how this can be achieved?
EDIT: I realised that it's not JSON, but I still don't know how to convert this to a dictionary or so in order to manipulate it.