Answers for "using requests in python"

6

python print return code of requests

>>> import requests
>>> r = requests.get('http://httpbin.org/status/404')
>>> r.status_code
404
Posted by: Guest on June-15-2020
6

python print return code of requests

>>> import requests
>>> r = requests.get('http://httpbin.org/status/404')
>>> r.status_code
404
Posted by: Guest on June-15-2020
17

get requests from python

import requests

response = requests.get('<api-endpoint>')
response.raise_for_status()

data = response.json()
print(data)
Posted by: Guest on March-24-2021
17

get requests from python

import requests

response = requests.get('<api-endpoint>')
response.raise_for_status()

data = response.json()
print(data)
Posted by: Guest on March-24-2021
4

get requests python

import requests

r = requests.get('https://api.github.com', auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']
Posted by: Guest on April-23-2020
4

get requests python

import requests

r = requests.get('https://api.github.com', auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']
Posted by: Guest on April-23-2020
3

python requests get

# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Posted by: Guest on April-06-2020
3

python requests get

# pip install requests
import requests
req = requests.get('<url here>', 'html.parser')
print(req.text)
Posted by: Guest on April-06-2020
0

HTTP requests methods

GET /users/<user_id> - return the information for <user_id>
POST /users/<user_id> - modify/update the information for <user_id> by providing the data
PUT - I will omit this for now as it is similar enough to `POST` at this level of depth
DELETE /users/<user_id> - delete user with ID <user_id>
Posted by: Guest on May-01-2021
0

HTTP requests methods

GET /users/<user_id> - return the information for <user_id>
POST /users/<user_id> - modify/update the information for <user_id> by providing the data
PUT - I will omit this for now as it is similar enough to `POST` at this level of depth
DELETE /users/<user_id> - delete user with ID <user_id>
Posted by: Guest on May-01-2021

Code answers related to "using requests in python"

Browse Popular Code Answers by Language