import json
import requests
response = requests.get(…)
json_data = json.loads(response.text)
solved how to parse the response in python?
import json
import requests
response = requests.get(…)
json_data = json.loads(response.text)
solved how to parse the response in python?