>>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
u'{"type":"User"...'
>>> r.json()
{u'private_gists': 419, u'total_private_repos': 77, ...}
>>> import requests
>>> r = requests.get('https://httpbin.org/basic-auth/user/pass', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
'{"authenticated": true, ...'
>>> r.json()
{'authenticated': True, ...}
# requires pip install requests
import requests
# webpage url to sent request to
url = 'https://www.google.com'
# send get requests
x = requests.get(url=url)
# print status code of request
print(x.status_code)
# print webpage source code text
print(x.text)
# print webpage as json
print(x.json)
# print webpage headers
print(x.headers)
# send a get request and timeout if it takes longer than 2.5 seconds
x = requests.get(url=url, timeout=2.5)
# demonstrate how to use the 'params' parameter: query string
x = requests.get(url=url, params={"model": "Mustang"})
####################
# require pip install requests
import requests
url = 'https://www.google.com'
form_data = {'username': 'john', 'password': "pwd"}
# send post request
x = requests.post(url=url, json=form_data)
# send post request and timeout if it takes longer than 3 seconds
x = requests.post(url=url, json=form_data, timeout=3)
# use the 'auth' parameter to send requests with HTTP Basic Auth:
x = requests.post(url, data=from_data, auth=('user', 'pass'))
print(x.text)
print(x.headers)
print(x.status_code)
Url = "https://"
r = requests.get( Url )
data = r.json()