0

I made an api call using python library 'request' and got a response as followed:

res = '{"Module_1":[{"Business_idea":"good", "strategy":"bad"}, {"employee":45,"clients":100}]}'

I have tried json.loads(res) but run into JSONDecodeError

How can I parse this string into a dictionary?

0 Answers0