上一節中,咱們瞭解了urllib的基本用法,可是其中確實有不方便的地方,好比處理網頁驗證和Cookies時,須要寫Opener
和Handler
來處理。爲了更加方便地實現這些操做,就有了更爲強大的庫requests,有了它,Cookies、登陸驗證、代理設置等操做都不是事兒。html
接下來,讓咱們領略一下它的強大之處吧。python
在開始以前,請確保已經正確安裝好了requests庫。若是沒有安裝,能夠參考1.2.1節安裝。nginx
urllib庫中的urlopen()
方法其實是以GET方式請求網頁,而requests中相應的方法就是get()
方法,是否是感受表達更明確一些?下面經過實例來看一下:git
import requests
r = requests.get('https://www.baidu.com/')
print(type(r))
print(r.status_code)
print(type(r.text))
print(r.text)
print(r.cookies)
複製代碼
運行結果以下:程序員
<class 'requests.models.Response'>
200
<class 'str'>
<html>
<head>
<script>
location.replace(location.href.replace("https://","http://"));
</script>
</head>
<body>
<noscript><meta http-equiv="refresh" content="0;url=http://www.baidu.com/"></noscript>
</body>
</html>
<RequestsCookieJar[<Cookie BIDUPSID=992C3B26F4C4D09505C5E959D5FBC005 for .baidu.com/>, <Cookie PSTM=1472227535 for .baidu.com/>, <Cookie __bsi=15304754498609545148_00_40_N_N_2_0303_C02F_N_N_N_0 for .www.baidu.com/>, <Cookie BD_NOT_HTTPS=1 for www.baidu.com/>]>
複製代碼
這裏咱們調用get()
方法實現與urlopen()
相同的操做,獲得一個Response
對象,而後分別輸出了Response
的類型、狀態碼、響應體的類型、內容以及Cookies。github
經過運行結果能夠發現,它的返回類型是requests.models.Response
,響應體的類型是字符串str
,Cookies的類型是RequestsCookieJar
。正則表達式
使用get()
方法成功實現一個GET請求,這倒不算什麼,更方便之處在於其餘的請求類型依然能夠用一句話來完成,示例以下:json
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/get')
r = requests.options('http://httpbin.org/get')
複製代碼
這裏分別用post()
、put()
、delete()
等方法實現了POST、PUT、DELETE等請求。是否是比urllib簡單太多了?windows
其實這只是冰山一角,更多的還在後面。瀏覽器
HTTP中最多見的請求之一就是GET請求,下面首先來詳細瞭解一下利用requests構建GET請求的方法。
首先,構建一個最簡單的GET請求,請求的連接爲httpbin.org/get,該網站會判斷若是客戶端發起的是GET請求的話,它返回相應的請求信息:
import requests
r = requests.get('http://httpbin.org/get')
print(r.text)
複製代碼
運行結果以下:
{
"args": {},
"headers": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Host": "httpbin.org",
"User-Agent": "python-requests/2.10.0"
},
"origin": "122.4.215.33",
"url": "http://httpbin.org/get"
}
複製代碼
能夠發現,咱們成功發起了GET請求,返回結果中包含請求頭、URL、IP等信息。
那麼,對於GET請求,若是要附加額外的信息,通常怎樣添加呢?好比如今想添加兩個參數,其中name
是germey
,age
是22。要構造這個請求連接,是否是要直接寫成:
r = requests.get('http://httpbin.org/get?name=germey&age=22')
複製代碼
這樣也能夠,可是是否是有點不人性化呢?通常狀況下,這種信息數據會用字典來存儲。那麼,怎樣來構造這個連接呢?
這一樣很簡單,利用params
這個參數就行了,示例以下:
import requests
data = {
'name': 'germey',
'age': 22
}
r = requests.get("http://httpbin.org/get", params=data)
print(r.text)
複製代碼
運行結果以下:
{
"args": {
"age": "22",
"name": "germey"
},
"headers": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Host": "httpbin.org",
"User-Agent": "python-requests/2.10.0"
},
"origin": "122.4.215.33",
"url": "http://httpbin.org/get?age=22&name=germey"
}
複製代碼
經過運行結果能夠判斷,請求的連接自動被構形成了:httpbin.org/get?age=22&…。
另外,網頁的返回類型其實是str
類型,可是它很特殊,是JSON格式的。因此,若是想直接解析返回結果,獲得一個字典格式的話,能夠直接調用json()
方法。示例以下:
import requests
r = requests.get("http://httpbin.org/get")
print(type(r.text))
print(r.json())
print(type(r.json()))
複製代碼
運行結果以下:
<class 'str'>
{'headers': {'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Host': 'httpbin.org', 'User-Agent': 'python-requests/2.10.0'}, 'url': 'http://httpbin.org/get', 'args': {}, 'origin': '182.33.248.131'}
<class 'dict'>
複製代碼
能夠發現,調用json()
方法,就能夠將返回結果是JSON格式的字符串轉化爲字典。
但須要注意的書,若是返回結果不是JSON格式,便會出現解析錯誤,拋出json.decoder.JSONDecodeError
異常。
上面的請求連接返回的是JSON形式的字符串,那麼若是請求普通的網頁,則確定能得到相應的內容了。下面以「知乎」→「發現」頁面爲例來看一下:
import requests
import re
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'
}
r = requests.get("https://www.zhihu.com/explore", headers=headers)
pattern = re.compile('explore-feed.*?question_link.*?>(.*?)</a>', re.S)
titles = re.findall(pattern, r.text)
print(titles)
複製代碼
這裏咱們加入了headers
信息,其中包含了User-Agent
字段信息,也就是瀏覽器標識信息。若是不加這個,知乎會禁止抓取。
接下來咱們用到了最基礎的正則表達式來匹配出全部的問題內容。關於正則表達式的相關內容,咱們會在3.3節中詳細介紹,這裏做爲實例來配合講解。
運行結果以下:
['\n爲何不少人喜歡說起「拉丁語系」這個詞?\n', '\n在沒有水的狀況下水系寶可夢如何戰鬥?\n', '\n有哪些經驗能夠送給 Kindle 新人?\n', '\n谷歌的廣告業務是如何賺錢的?\n', '\n程序員該學習什麼,能在上學期間掙錢?\n', '\n有哪些本來只是一個小消息,但回看發現是個驚天大新聞的例子?\n', '\n如何評價今敏?\n', '\n源氏是怎麼把那麼長的刀從背後拔出來的?\n', '\n年輕時得了絕症或大病是怎樣的感覺?\n', '\n年輕時得了絕症或大病是怎樣的感覺?\n']
複製代碼
咱們發現,這裏成功提取出了全部的問題內容。
在上面的例子中,咱們抓取的是知乎的一個頁面,實際上它返回的是一個HTML文檔。若是想抓去圖片、音頻、視頻等文件,應該怎麼辦呢?
圖片、音頻、視頻這些文件本質上都是由二進制碼組成的,因爲有特定的保存格式和對應的解析方式,咱們才能夠看到這些形形色色的多媒體。因此,想要抓取它們,就要拿到它們的二進制碼。
下面以GitHub的站點圖標爲例來看一下:
import requests
r = requests.get("https://github.com/favicon.ico")
print(r.text)
print(r.content)
複製代碼
這裏抓取的內容是站點圖標,也就是在瀏覽器每個標籤上顯示的小圖標,如圖3-3所示。
圖3-3 站點圖標
這裏打印了Response
對象的兩個屬性,一個是text
,另外一個是content
。
運行結果如圖3-4所示,其中前兩行是r.text
的結果,最後一行是r.content
的結果。
圖3-4 運行結果
能夠注意到,前者出現了亂碼,後者結果前帶有一個b
,這表明是bytes
類型的數據。因爲圖片是二進制數據,因此前者在打印時轉化爲str
類型,也就是圖片直接轉化爲字符串,這理所固然會出現亂碼。
接着,咱們將剛纔提取到的圖片保存下來:
import requests
r = requests.get("https://github.com/favicon.ico")
with open('favicon.ico', 'wb') as f:
f.write(r.content)
複製代碼
這裏用了open()
方法,它的第一個參數是文件名稱,第二個參數表明以二進制寫的形式打開,能夠向文件裏寫入二進制數據。
運行結束以後,能夠發如今文件夾中出現了名爲favicon.ico的圖標,如圖3-5所示。
圖3-5 圖標
一樣地,音頻和視頻文件也能夠用這種方法獲取。
與urllib.request
同樣,咱們也能夠經過headers
參數來傳遞頭信息。
好比,在上面「知乎」的例子中,若是不傳遞headers
,就不能正常請求:
import requests
r = requests.get("https://www.zhihu.com/explore")
print(r.text)
複製代碼
運行結果以下:
<html><body><h1>500 Server Error</h1>
An internal server error occured.
</body></html>
複製代碼
但若是加上headers
並加上User-Agent
信息,那就沒問題了:
import requests
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'
}
r = requests.get("https://www.zhihu.com/explore", headers=headers)
print(r.text)
複製代碼
固然,咱們能夠在headers
這個參數中任意添加其餘的字段信息。
前面咱們瞭解了最基本的GET請求,另一種比較常見的請求方式是POST。使用requests
實現POST請求一樣很是簡單,示例以下:
import requests
data = {'name': 'germey', 'age': '22'}
r = requests.post("http://httpbin.org/post", data=data)
print(r.text)
複製代碼
這裏仍是請求httpbin.org/post,該網站能夠判斷若是請求是POST方式,就把相關請求信息返回。
運行結果以下:
{
"args": {},
"data": "",
"files": {},
"form": {
"age": "22",
"name": "germey"
},
"headers": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Content-Length": "18",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "httpbin.org",
"User-Agent": "python-requests/2.10.0"
},
"json": null,
"origin": "182.33.248.131",
"url": "http://httpbin.org/post"
}
複製代碼
能夠發現,咱們成功得到了返回結果,其中form
部分就是提交的數據,這就證實POST請求成功發送了。
發送請求後,獲得的天然就是響應。在上面的實例中,咱們使用text
和content
獲取了響應的內容。此外,還有不少屬性和方法能夠用來獲取其餘信息,好比狀態碼、響應頭、Cookies等。示例以下:
import requests
r = requests.get('http://www.jianshu.com')
print(type(r.status_code), r.status_code)
print(type(r.headers), r.headers)
print(type(r.cookies), r.cookies)
print(type(r.url), r.url)
print(type(r.history), r.history)
複製代碼
這裏分別打印輸出status_code
屬性獲得狀態碼,輸出headers
屬性獲得響應頭,輸出cookies
屬性獲得Cookies,輸出url
屬性獲得URL,輸出history
屬性獲得請求歷史。
運行結果以下:
<class 'int'> 200
<class 'requests.structures.CaseInsensitiveDict'> {'X-Runtime': '0.006363', 'Connection': 'keep-alive', 'Content-Type': 'text/html; charset=utf-8', 'X-Content-Type-Options': 'nosniff', 'Date': 'Sat, 27 Aug 2016 17:18:51 GMT', 'Server': 'nginx', 'X-Frame-Options': 'DENY', 'Content-Encoding': 'gzip', 'Vary': 'Accept-Encoding', 'ETag': 'W/"3abda885e0e123bfde06d9b61e696159"', 'X-XSS-Protection': '1; mode=block', 'X-Request-Id': 'a8a3c4d5-f660-422f-8df9-49719dd9b5d4', 'Transfer-Encoding': 'chunked', 'Set-Cookie': 'read_mode=day; path=/, default_font=font2; path=/, _session_id=xxx; path=/; HttpOnly', 'Cache-Control': 'max-age=0, private, must-revalidate'}
<class 'requests.cookies.RequestsCookieJar'> <RequestsCookieJar[<Cookie _session_id=xxx for www.jianshu.com/>, <Cookie default_font=font2 for www.jianshu.com/>, <Cookie read_mode=day for www.jianshu.com/>]>
<class 'str'> http://www.jianshu.com/
<class 'list'> []
複製代碼
由於session_id
過長,在此簡寫。能夠看到,headers
和cookies
這兩個屬性獲得的結果分別是CaseInsensitiveDict
和RequestsCookieJar
類型。
狀態碼經常使用來判斷請求是否成功,而requests還提供了一個內置的狀態碼查詢對象requests.codes
,示例以下:
import requests
r = requests.get('http://www.jianshu.com')
exit() if not r.status_code == requests.codes.ok else print('Request Successfully')
複製代碼
這裏經過比較返回碼和內置的成功的返回碼,來保證請求獲得了正常響應,輸出成功請求的消息,不然程序終止,這裏咱們用requests.codes.ok
獲得的是成功的狀態碼200。
那麼,確定不能只有ok
這個條件碼。下面列出了返回碼和相應的查詢條件:
# 信息性狀態碼
100: ('continue',),
101: ('switching_protocols',),
102: ('processing',),
103: ('checkpoint',),
122: ('uri_too_long', 'request_uri_too_long'),
# 成功狀態碼
200: ('ok', 'okay', 'all_ok', 'all_okay', 'all_good', '\\o/', '✓'),
201: ('created',),
202: ('accepted',),
203: ('non_authoritative_info', 'non_authoritative_information'),
204: ('no_content',),
205: ('reset_content', 'reset'),
206: ('partial_content', 'partial'),
207: ('multi_status', 'multiple_status', 'multi_stati', 'multiple_stati'),
208: ('already_reported',),
226: ('im_used',),
# 重定向狀態碼
300: ('multiple_choices',),
301: ('moved_permanently', 'moved', '\\o-'),
302: ('found',),
303: ('see_other', 'other'),
304: ('not_modified',),
305: ('use_proxy',),
306: ('switch_proxy',),
307: ('temporary_redirect', 'temporary_moved', 'temporary'),
308: ('permanent_redirect',
'resume_incomplete', 'resume',), # These 2 to be removed in 3.0
# 客戶端錯誤狀態碼
400: ('bad_request', 'bad'),
401: ('unauthorized',),
402: ('payment_required', 'payment'),
403: ('forbidden',),
404: ('not_found', '-o-'),
405: ('method_not_allowed', 'not_allowed'),
406: ('not_acceptable',),
407: ('proxy_authentication_required', 'proxy_auth', 'proxy_authentication'),
408: ('request_timeout', 'timeout'),
409: ('conflict',),
410: ('gone',),
411: ('length_required',),
412: ('precondition_failed', 'precondition'),
413: ('request_entity_too_large',),
414: ('request_uri_too_large',),
415: ('unsupported_media_type', 'unsupported_media', 'media_type'),
416: ('requested_range_not_satisfiable', 'requested_range', 'range_not_satisfiable'),
417: ('expectation_failed',),
418: ('im_a_teapot', 'teapot', 'i_am_a_teapot'),
421: ('misdirected_request',),
422: ('unprocessable_entity', 'unprocessable'),
423: ('locked',),
424: ('failed_dependency', 'dependency'),
425: ('unordered_collection', 'unordered'),
426: ('upgrade_required', 'upgrade'),
428: ('precondition_required', 'precondition'),
429: ('too_many_requests', 'too_many'),
431: ('header_fields_too_large', 'fields_too_large'),
444: ('no_response', 'none'),
449: ('retry_with', 'retry'),
450: ('blocked_by_windows_parental_controls', 'parental_controls'),
451: ('unavailable_for_legal_reasons', 'legal_reasons'),
499: ('client_closed_request',),
# 服務端錯誤狀態碼
500: ('internal_server_error', 'server_error', '/o\\', '✗'),
501: ('not_implemented',),
502: ('bad_gateway',),
503: ('service_unavailable', 'unavailable'),
504: ('gateway_timeout',),
505: ('http_version_not_supported', 'http_version'),
506: ('variant_also_negotiates',),
507: ('insufficient_storage',),
509: ('bandwidth_limit_exceeded', 'bandwidth'),
510: ('not_extended',),
511: ('network_authentication_required', 'network_auth', 'network_authentication')
複製代碼
好比,若是想判斷結果是否是404狀態,能夠用requests.codes.not_found
來比對。
本資源首發於崔慶才的我的博客靜覓: Python3網絡爬蟲開發實戰教程 | 靜覓
如想了解更多爬蟲資訊,請關注個人我的微信公衆號:進擊的Coder
weixin.qq.com/r/5zsjOyvEZ… (二維碼自動識別)