精講Python中的requests方法
安裝requests
如果安裝了Anaconda,requests就已經可用了。否則,需要在命令列下透過pip安裝:
$ pip install requests
如果遇到Permission denied安裝失敗,請加上sudo重試。
使用requests
要透過GET訪問一個頁面,只需要幾行程式碼:
>>> import requests >>> r = requests.get('') # 豆瓣首頁 >>> r.status_code 200 >>> r.text r.text '<!DOCTYPE HTML>n<html>n<head>n<meta name="description" content="提供圖書、電影、音樂唱片的推薦、評論和...'
對於帶引數的URL,傳入一個dict作為params引數:
>>> r = requests.get('search', params={'q': 'python', 'cat': '1001'}) >>> r.url # 實際請求的URL'search?q=python&cat=1001'
requests自動檢測編碼,可以使用encoding屬性檢視:
>>> r.encoding'utf-8'
無論響應是文字還是二進位制內容,我們都可以用content屬性獲得bytes物件:
>>> r.content b'<!DOCTYPE html>n<html>n<head>n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">n...' requests的方便之處還在於,對於特定型別的響應,例如JSON,可以直接獲取: >>> r = requests.get(' 20woeid%20%3D%202151330&format=json') >>> r.json() {'query': {'count': 1, 'created': '2017-11-17T07:14:12Z', ...
需要傳入HTTP Header時,我們傳入一個dict作為headers引數:
>>> r = requests.get('', headers={'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit'}) >>> r.text '<!DOCTYPE html>n<html>n<head>n<meta charset="UTF-8">n <title>豆瓣(手機版)</title>...'
要傳送POST請求,只需要把get()方法變成post(),然後傳入data引數作為POST請求的資料:
>>> r = requests.post('', data={'form_email': 'abc@example.com', 'form_password': '123456'}) requests預設使用application/x-www-form-urlencoded對POST資料編碼。如果要傳遞JSON資料,可以直接傳入json引數: params = {'key': 'value'}r = requests.post(url, json=params) # 內部自動序列化為JSON
類似的,上傳檔案需要更復雜的編碼格式,但是requests把它簡化成files引數:
>>> upload_files = {'file': open('report.xls', 'rb')} >>> r = requests.post(url, files=upload_files)
在讀取檔案時,注意務必使用'rb'即二進位制模式讀取,這樣獲取的bytes長度才是檔案的長度。
把post()方法替換為put(),delete()等,就可以以PUT或DELETE方式請求資源。
除了能輕鬆獲取響應內容外,requests對獲取HTTP響應的其他資訊也非常簡單。例如,獲取響應頭:
>>> r.headers {Content-Type': 'text/html; charset=utf-8', 'Transfer-Encoding': 'chunked', 'Content-Encoding': 'gzip', ...} >>> r.headers['Content-Type'] 'text/html; charset=utf-8'
requests對Cookie做了特殊處理,使得我們不必解析Cookie就可以輕鬆獲取指定的Cookie:
>>> r.cookies['ts']'example_cookie_12345'
要在請求中傳入Cookie,只需準備一個dict傳入cookies引數:
>>> cs = {'token': '12345', 'status': 'working'} >>> r = requests.get(url, cookies=cs)
最後,要指定超時,傳入以秒為單位的timeout引數:
>>> r = requests.get(url, timeout=2.5) # 2.5秒後超時
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3407/viewspace-2836984/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Django模型中的save方法 精講Django模型
- Python 中 Requests 庫的用法Python
- Python requests設定代理的方法Python
- Python中Pandas 方法cut簡單講講Python
- AWR中的主要事件分析精講事件
- Python正規表示式精講Python
- 方法精講-言語1筆記筆記
- Python requests 庫中 iter_lines 方法的流式傳輸最佳化Python
- python requests模組session的使用建議及整個會話中的所有cookie的方法PythonSession會話Cookie
- python3+requests+unittest介面自動化例項講解Python
- 《探索Python Requests中的代理應用與實踐》Python
- Synchronized 精講synchronized
- Python:requests模組Python
- python+requestsPython
- (衝突)關於python中的requests模組中,呼叫text方法出現中文亂碼的解決辦法Python
- 修改 requests 庫原始碼的方法原始碼
- python+requests進行get、post方法介面測試Python
- python+requests 進行 get、post 方法介面測試Python
- Mysql 索引精講MySql索引
- python requests庫的簡單使用Python
- python的requests怎麼安裝Python
- requests庫中的Cookie處理Cookie
- Python函式的位置引數、關鍵字引數精講Python函式
- python爬蟲requests模組Python爬蟲
- python requests 最牛攻略Python
- 安裝Python requests包Python
- 6.爬蟲 requests庫講解 總結爬蟲
- Vue —— VueX精講(1)Vue
- Vue —— 精講 VueRouter(1)Vue
- 精講Redis:持久化Redis持久化
- Python—Requests庫的爬取效能分析Python
- 精講RestTemplate第4篇-POST請求方法使用詳解REST
- Requests如何在Python爬蟲中實現get請求?Python爬蟲
- python中精確的浮點數運算Python
- 5.爬蟲 requests庫講解 高階用法爬蟲
- Python中列表的方法Python
- python類中的方法Python
- Python----Requests庫基本使用Python