requests to json python code example
Example 1: python convert requests response to json
import json
import requests
response = requests.get(...)
json_data = json.loads(response.text)
Example 2: python requests send json
requests.post('http://httpbin.org/post', json={'test': 'cheers'})