python request text to dict

150

python request text to dict -

import json
import requests

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

Comments

Submit
0 Comments