您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Requests庫如何在Python中應用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
0 安裝
pip install requests
1 發送請求
r=requests.get('https://www.baidu.com') print r.status_code,r.text r=requests.post('http://httpbin.org/post') r=requests.put('http://httpbin.org/put') r=requests.delete('http://httpbin.org/delete') r=requests.head('http://httpbin.org/head') r=requests.options('http://httpbin.org/')
2 發送get參數
param={'key1':value1,'key2':value2} r=requests.get('http://www.baidu.com/',params=param)
3 發送post參數
param={'key1':value1,'key2':value2} r=requests.post('http://www.baidu.com/',params=param) #表單格式 r=requests.post('http://www.baidu.com/',json=param) #json格式數據 file= {'file':open('1.txt','rb')} r=reuqest.post('http://httpbin.org/post',files=file)
4 文件下載
with open('1.pic','wb') as pic: for chunk in response.iter_content(size): pic.write(chunk)
5 攜帶header
header={'key1':value1,'key2':value2} r=requests.get('http://www.baidu.com/',headers=header)
6 攜帶cookie
cookie={'key1':value1,'key2':value2} r=requests.get('http://www.baidu.com/',cookies=cookie)
7 重定向
默認requests是允許重定向的,并將重定向的歷史保存在response.history
數組中
如果不需要重定向,可以通過開關來關閉
r=requests.get('http://www.baidu.com/',allow_redirects=False)
8 使用代理
使用socks代理需要安裝三方擴展包
pip install requests[socks]
proxy={ 'http':'http://127.0.0.1:8000', 'https':'https://127.0.0.1:8080' 'http':'socks5://user:pass@127.0.0.1:8132' } r=requests.get('https://www.github.com/',proxies=proxy)
9 設置連接超時
r=requests.get('http://www.baidu.com/',timeout=2.5)
10 ssl證書
證書驗證
requests.get('https://kennethreitz.com', verify=True) requests.get('https://kennethreitz.com', cert=('/path/server.crt', '/path/key'))
如果指定本地證書及密鑰,則密鑰需要是解密的。
11 requests對象
r.url
r.text
r.headers
12 Response對象
response.request
對應的請求對象response.raw socket
上直接獲得的數據response.text
根據響應頭進行解碼的文本數據response.content
不解碼,返回二進制數據response.json()
對返回數據進行json解碼response.headers
詞典形式存儲返回的headersresponse.cookies
詞典形式存儲返回的cookies
以上就是Requests庫如何在Python中應用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。