I have a JSON list that I'm calling from a db, but gets formatted like this:
[('[{"recommendation": "Fung Corp"}, {"recommendation": "AllSeq"}, {"recommendation": "Testing testing org"}]',)]
I want to unnest it so the leading [('
and trailing ,)]
so all remains is the actual JSON list of objects
[{"recommendation": "Fung Corp"}, {"recommendation": "AllSeq"}, {"recommendation": "Testing testing org"}]
All in python preferably