python爬蟲學(xué)習(xí)1

  1. 學(xué)習(xí)get與post請求诲侮,嘗試使用requests或者是urllib用get方法向https://www.baidu.com/發(fā)出一個請求沥割,并將其返回結(jié)果輸出肮雨。
  2. 如果是斷開了網(wǎng)絡(luò)睹限,再發(fā)出申請啄寡,結(jié)果又是什么窍箍。了解申請返回的狀態(tài)碼串纺。
  3. 了解什么是請求頭丽旅,如何添加請求頭。

(學(xué)習(xí)博客地址:https://desmonday.github.io/2019/02/28/python%E7%88%AC%E8%99%AB%E5%AD%A6%E4%B9%A0-day1/#more

1.GET與POST請求

1.1使用requests實現(xiàn)HTTP請求(推薦)

使用前需先安裝第三方requests庫纺棺。
get和post兩個函數(shù)的參數(shù)含義如下:

in:
help(requests.get)
help(requests.post)

out:
get(url, params=None, **kwargs)
    Sends a GET request.
    
    :param url: URL for the new :class:`Request` object.
    :param params: (optional) Dictionary, list of tuples or bytes to send
        in the body of the :class:`Request`.
    :param \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response

post(url, data=None, json=None, **kwargs)
    Sends a POST request.
    
    :param url: URL for the new :class:`Request` object.
    :param data: (optional) Dictionary, list of tuples, bytes, or file-like
        object to send in the body of the :class:`Request`.
    :param json: (optional) json data to send in the body of the :class:`Request`.
    :param \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
1.1.1一個請求與響應(yīng)模型實現(xiàn):
import requests

# get請求
r = requests.get('https://www.baidu.com')
print(r.content)
# post請求
postdata = {'key':'value'}
r = requests.post('https://www.baidu.com/login',data=postdata)
print(r.content)

輸出:
1.1.2響應(yīng)與編碼
import requests

# get請求為例
r = requests.get('https://www.baidu.com')
print('content:')
print(r.content)
print('text:')
print(r.text)
print('encoding:')
print(r.encoding)
r.encoding = 'utf-8'
print('new text:')
print(r.text)

輸出:
1.2使用urllib實現(xiàn)HTTP請求
Help on module urllib.request in urllib:

NAME
    urllib.request - An extensible library for opening URLs using a variety of protocols

DESCRIPTION
    The simplest way to use this module is to call the urlopen function,
    which accepts a string containing a URL or a Request object (described
    below).  It opens the URL and returns the results as file-like
    object; the returned object has some extra methods described below.
    
    The OpenerDirector manages a collection of Handler objects that do
    all the actual work.  Each Handler implements a particular protocol or
    option.  The OpenerDirector is a composite object that invokes the
    Handlers needed to open the requested URL.  For example, the
    HTTPHandler performs HTTP GET and POST requests and deals with
    non-error returns.  The HTTPRedirectHandler automatically deals with
    HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
    deals with digest authentication.
    
    urlopen(url, data=None) -- Basic usage is the same as original
    urllib.  pass the url and optionally data to post to an HTTP URL, and
    get a file-like object back.  One difference is that you can also pass
    a Request instance instead of URL.  Raises a URLError (subclass of
    OSError); for HTTP errors, raises an HTTPError, which can also be
    treated as a valid response.
    
    build_opener -- Function that creates a new OpenerDirector instance.
    Will install the default handlers.  Accepts one or more Handlers as
    arguments, either instances or Handler classes that it will
    instantiate.  If one of the argument is a subclass of the default
    handler, the argument will be installed instead of the default.
    
    install_opener -- Installs a new opener as the default opener.
    
    objects of interest:
    
    OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
    the Handler classes, while dealing with requests and responses.
    
    Request -- An object that encapsulates the state of a request.  The
    state can be as simple as the URL.  It can also include extra HTTP
    headers, e.g. a User-Agent.
    
    BaseHandler --
    
    internals:
    BaseHandler and parent
    _call_chain conventions
    
    Example usage:
    
    import urllib.request
    
    # set up authentication info
    authinfo = urllib.request.HTTPBasicAuthHandler()
    authinfo.add_password(realm='PDQ Application',
                          uri='https://mahler:8092/site-updates.py',
                          user='klem',
                          passwd='geheim$parole')
    
    proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})
    
    # build a new opener that adds authentication and caching FTP handlers
    opener = urllib.request.build_opener(proxy_support, authinfo,
                                         urllib.request.CacheFTPHandler)
    
    # install it
    urllib.request.install_opener(opener)
    
    f = urllib.request.urlopen('http://www.python.org/')
1.2.1一個請求與響應(yīng)模型實現(xiàn)
import urllib.request

# get請求
f = urllib.request.urlopen('https://www.baidu.com')
firstline = f.readline() # 讀取html頁面的第一行
print(firstline)
# post請求
req = urllib.request.Request(url='https://www.baidu.com',
                             data=b'The first day of Web Crawler')
req_data = urllib.request.urlopen(req)
req = req_data.read()
print(req)

輸出:

2.申請返回的狀態(tài)碼

2.1HTTP請求返回狀態(tài)碼詳解

HTTP請求返回狀態(tài)碼詳解

2.2網(wǎng)絡(luò)斷開時發(fā)出申請的結(jié)果

使用requests請求為例榄笙。

import requests

# get請求
r = requests.get('https://www.baidu.com')
print(r.content)
# post請求
postdata = {'key':'value'}
r = requests.post('https://www.baidu.com/login',data=postdata)
print(r.content)

輸出:

3.請求頭

3.1什么是請求頭

請求頭的作用,通俗來講祷蝌,就是能夠告訴被請求的服務(wù)器需要傳送什么樣的格式的信息茅撞。
(參考博客:常用的請求頭與響應(yīng)頭

3.2如何添加請求頭

在爬蟲的時候,如果不添加請求頭巨朦,可能網(wǎng)站會阻止一個用戶的登陸米丘,此時我們就需要添加請求頭來進(jìn)行模擬偽裝,使用python添加請求頭方法如下(使用requests請求為例)糊啡。

import requests

# 請求頭
headers={"User-Agent" : "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.1.6) ",
         "Accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language" : "en-us",
         "Connection" : "keep-alive",
         "Accept-Charset" : "GB2312,utf-8;q=0.7,*;q=0.7"}

r=requests.post("http://baike.baidu.com/item/哆啦A夢",headers=headers,allow_redirects=False)   # allow_redirects設(shè)置為重定向

r.encoding='UTF-8'
print(r.url)
print(r.headers) #響應(yīng)頭
print(r.request.headers) #請求頭

輸出:
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末拄查,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子棚蓄,更是在濱河造成了極大的恐慌堕扶,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件癣疟,死亡現(xiàn)場離奇詭異挣柬,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)睛挚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門邪蛔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人扎狱,你說我怎么就攤上這事侧到。” “怎么了淤击?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵匠抗,是天一觀的道長。 經(jīng)常有香客問我污抬,道長汞贸,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任印机,我火速辦了婚禮矢腻,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘射赛。我一直安慰自己多柑,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布楣责。 她就那樣靜靜地躺著竣灌,像睡著了一般聂沙。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上初嘹,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天及汉,我揣著相機(jī)與錄音,去河邊找鬼削樊。 笑死豁生,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的漫贞。 我是一名探鬼主播甸箱,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼迅脐!你這毒婦竟也來了芍殖?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤谴蔑,失蹤者是張志新(化名)和其女友劉穎豌骏,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體隐锭,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡窃躲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了钦睡。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蒂窒。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖荞怒,靈堂內(nèi)的尸體忽然破棺而出洒琢,到底是詐尸還是另有隱情,我是刑警寧澤褐桌,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布衰抑,位于F島的核電站,受9級特大地震影響荧嵌,放射性物質(zhì)發(fā)生泄漏呛踊。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一啦撮、第九天 我趴在偏房一處隱蔽的房頂上張望谭网。 院中可真熱鬧,春花似錦逻族、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽薄辅。三九已至,卻和暖如春抠璃,著一層夾襖步出監(jiān)牢的瞬間站楚,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工搏嗡, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留窿春,地道東北人。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓采盒,卻偏偏與公主長得像旧乞,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子磅氨,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內(nèi)容