Requests php
Python基於urllib,採用 Apache2 Licensed 開源協議的 HTTP 庫,能知足 HTTP 測試需求。html
Requests 支持 Python3 !python
1、安裝 Requestsgit
經過pip安裝github
pip install requestsajax
或者,下載代碼後安裝:json
$ git clone git://github.com/kennethreitz/requests.gitapi
$ cd requests服務器
$ python setup.py installcookie
2、支持的全部方法
requests.get(‘url/json’) #GET請求
requests.post(「url/post」) #POST請求
requests.put(「url/put」) #PUT請求
requests.delete(「url/delete」) #DELETE請求
requests.head(「url/get」) #HEAD請求
requests.options(「url/get」) #OPTIONS請求
三,最簡單的使用示例及返回Response對象對應的屬性:
import requests
import json
r = requests.get(url='http://www.xoxxoo.com') # 最基本的GET請求
r = requests.get(url=url, params={'index':'python'}) #帶參數的GET請求
requests.post('https://api.github.com/some/endpoint', data=json.dumps({'some': 'data'})) #POST發送JSON數據
ata = {'some': 'data'}
headers = {'content-type': 'application/json',
'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}
r = requests.post('https://api.github.com/some/endpoint', data=data, headers=headers) #定製header
r.status_code #響應狀態碼
r.text #字符串方式的響應體,會自動根據響應頭部的字符編碼進行解碼,返回全部的HTML
r.raw #返回原始響應體,也就是 urllib 的 response 對象,使用 r.raw.read() 讀取
r.content #字節方式的響應體,會自動爲你解碼 gzip 和 deflate 壓縮
r.headers #以字典對象存儲服務器響應頭,可是這個字典比較特殊,字典鍵不區分大小寫,若鍵不存在則返回None
#*特殊方法*#
r.json() #Requests中內置的JSON解碼器
r.raise_for_status() #失敗請求(非200響應)拋出異常
r.encoding #網站編碼
r.url
上面的r即爲返回的Response對象
使用requests方法後,會返回一個response對象,其存儲了服務器響應的內容,如上實例中已經提到的 r.text、r.status_code……
獲取文本方式的響應體實例:當你訪問 r.text 之時,會使用其響應的文本編碼進行解碼,而且你能夠修改其編碼讓 r.text 使用自定義的編碼進行解碼。
r = requests.get('http://www.itwhy.org')
print(r.text, '\n{}\n'.format('*'*79), r.encoding)
r.encoding = 'GBK'
print(r.text, '\n{}\n'.format('*'*79), r.encoding)
四,案例之一:
import requests
URL = 'http://ip.taobao.com/service/getIpInfo.php' # 淘寶IP地址庫API
try:
r = requests.get(URL, params={'ip': '8.8.8.8'}, timeout=1)
r.raise_for_status() # 若是響應狀態碼不是 200,就主動拋出異常
except requests.RequestException as e:
print(e)
else:
result = r.json()
print(type(result), result, sep='\n')
5、使用 Requests 模塊上傳文件的示例:
import requests
url = 'http://127.0.0.1:5000/upload'
files = {'file': open('d:/a/b.png', 'rb')}
#files = {'file': ('report.jpg', open('d:/a/b.png', 'rb'))} #顯式的設置文件名
r = requests.post(url, files=files)
print(r.text)
還能夠把字符串當着文件進行上傳:
import requests
url = 'http://127.0.0.1:5000/upload'
files = {'file': ('test.txt', b'Hello Requests.')} #必需顯式的設置文件名
r = requests.post(url, files=files)
print(r.text)
6、身份驗證
基自己份認證(HTTP Basic Auth):
import requests
from requests.auth import HTTPBasicAuth
r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=HTTPBasicAuth('user', 'passwd'))
# r = requests.get('https://httpbin.org/hidden-basic-auth/user/passwd', auth=('user', 'passwd')) # 簡寫
print(r.json())
另外一種很是流行的HTTP身份認證形式是摘要式身份認證,Requests對它的支持也是開箱便可用的:
requests.get(URL, auth=HTTPDigestAuth('user', 'pass'))
7、Cookies與會話對象
若是某個響應中包含一些Cookie,你能夠快速訪問它們:
import requests
r = requests.get('http://www.google.com.hk/')
print(r.cookies['NID'])
print(tuple(r.cookies))
要想發送你的cookies到服務器,可使用 cookies 參數:
import requests
url = 'http://httpbin.org/cookies'
cookies = {'testCookies_1': 'Hello_Python3', 'testCookies_2': 'Hello_Requests'}
# 在Cookie Version 0中規定空格、方括號、圓括號、等於號、逗號、雙引號、斜槓、問號、@,冒號,分號等特殊符號都不能做爲Cookie的內容。
r = requests.get(url, cookies=cookies)
print(r.json())
會話對象讓你可以跨請求保持某些參數,最方便的是在同一個Session實例發出的全部請求之間保持cookies,且這些都是自動處理的,甚是方便。
下面就來一個真正的實例,以下是快盤簽到腳本:
import requests
headers = {'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate, compress',
'Accept-Language': 'en-us;q=0.5,en;q=0.3',
'Cache-Control': 'max-age=0',
'Connection': 'keep-alive',
'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}
s = requests.Session()
s.headers.update(headers)
# s.auth = ('superuser', '123')
s.get('https://www.kuaipan.cn/account_login.htm')
_URL = 'http://www.kuaipan.cn/index.php'
s.post(_URL, params={'ac':'account', 'op':'login'},
data={'username':'****@foxmail.com', 'userpwd':'********', 'isajax':'yes'})
r = s.get(_URL, params={'ac':'zone', 'op':'taskdetail'})
print(r.json())
s.get(_URL, params={'ac':'common', 'op':'usersign'})
8、超時與異常
timeout 僅對鏈接過程有效,與響應體的下載無關。
>>> requests.get('http://github.com', timeout=0.001)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
requests.exceptions.Timeout: HTTPConnectionPool(host='github.com', port=80): Request timed out. (timeout=0.001)
全部Requests顯式拋出的異常都繼承自 requests.exceptions.RequestException:ConnectionError、HTTPError、Timeout、TooManyRedirects。
九,特殊用法:
r.history #如何返回(<Response [302]>,)
這裏能看出他是使用了302跳轉。
>>>r = requests.get('http://www.baidu.com/link?url=QeTRFOS7TuUQRppa0wlTJJr6FfIYI1DJprJukx4Qy0XnsDO_s9baoO8u1wvjxgqN', allow_redirects = False)
>>>r.status_code
302
只要加上一個參數allow_redirects,禁止了跳轉,就直接出現跳轉的狀態碼了
代理訪問
採集時爲避免被封IP,常常會使用代理。requests也有相應的proxies屬性。
import requests
proxies = {
"http": "http://10.10.1.10:3128",
"https": "http://10.10.1.10:1080",
}
requests.get("http://www.zhidaow.com", proxies=proxies)
若是代理須要帳戶和密碼,則需這樣:
proxies = {
"http": "http://user:pass@10.10.1.10:3128/",
}
請求頭內容
請求頭內容能夠用r.request.headers來獲取。
>>> r.request.headers
{'Accept-Encoding': 'identity, deflate, compress, gzip',
'Accept': '*/*', 'User-Agent': 'python-requests/1.2.3 CPython/2.7.3 Windows/XP'}
持久鏈接keep-alive
requests的keep-alive是基於urllib3,同一會話內的持久鏈接徹底是自動的。同一會話內的全部請求都會自動使用恰當的鏈接。
也就是說,你無需任何設置,requests會自動實現keep-alive。
轉自:http://www.xoxxoo.com/article/show/i/430.html
一、官方文檔
requests的具體安裝過程請看:http://docs.python-requests.org/en/latest/user/install.html#install
requests的官方指南文檔:http://docs.python-requests.org/en/latest/user/quickstart.html
requests的高級指南文檔:http://docs.python-requests.org/en/latest/user/advanced.html#advanced
requests的文檔: http://cn.python-requests.org/en/latest/