python requests with body json code example
Example 1: python requests header
url = 'https://api.github.com/some/endpoint'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
Example 2: python requests send json
requests.post('http://httpbin.org/post', json={'test': 'cheers'})