Answers for "requests get json response"

3

python convert requests response to json

import json
import requests

response = requests.get(...)
json_data = json.loads(response.text)
Posted by: Guest on May-30-2020
7

python requests header

url = 'https://api.github.com/some/endpoint'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
Posted by: Guest on September-27-2020
1

raise_for_status() requests

Raise an exception if a request is unsuccessful

import requests
url = "http://mock.kite.com/status/404"
r = requests.get(url)
try: 
    r.raise_for_status()
except requests.exceptions.HTTPError as e: 
    print e
OUTPUT
404 Client Error: NOT FOUND
Posted by: Guest on April-08-2020

Code answers related to "requests get json response"

Code answers related to "Javascript"

Browse Popular Code Answers by Language