python request text to dict code example
Example: python request text to dict
import json
import requests
response = requests.get(...)
json_data = json.loads(response.text)
import json
import requests
response = requests.get(...)
json_data = json.loads(response.text)