91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Requests庫如何在Python中應用

發布時間:2021-04-01 17:09:39 來源:億速云 閱讀:168 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關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 詞典形式存儲返回的headers
response.cookies 詞典形式存儲返回的cookies

以上就是Requests庫如何在Python中應用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

云浮市| 新平| 德州市| 江津市| 宁德市| 海林市| 龙里县| 肇源县| 达州市| 泽州县| 筠连县| 嘉黎县| 房产| 溧水县| 荆门市| 德昌县| 西安市| 扎鲁特旗| 静安区| 扬州市| 敖汉旗| 汉沽区| 留坝县| 班戈县| 肥东县| 滦南县| 惠来县| 罗城| 南雄市| 武安市| 蒙山县| 阳曲县| 大渡口区| 正镶白旗| 射洪县| 延寿县| 娄底市| 凉山| 抚松县| 景德镇市| 巴楚县|