convert response to json python

38

python convert requests response to json -

import json
import requests

response = requests.get(...)
json_data = json.loads(response.text)

Comments

Submit
0 Comments