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

溫馨提示×

溫馨提示×

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

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

Python爬蟲中urllib庫怎么用

發布時間:2022-02-09 14:26:31 來源:億速云 閱讀:179 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Python爬蟲中urllib庫怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

    一、說明:

    urllib庫是python內置的一個http請求庫,requests庫就是基于該庫開發出來的,雖然requests庫使用更方便,但作為最最基本的請求庫,了解一下原理和用法還是很有必要的。

    二、urllib四個模塊組成:

    urllib.request  
    請求模塊(就像在瀏覽器輸入網址,敲回車一樣)

    urllib.error   
    異常處理模塊(出現請求錯誤,可以捕捉這些異常)

    urllib.parse  
    url解析模塊

    urllib.robotparser
    robots.txt解析模塊,判斷哪個網站可以爬,哪個不可以爬,用的比較少

    在python2與python3中有所不同

    在python2中:

    import urllib2
    response = urllib2.urlopen('http://www.baidu.com')

    在python3中:

    import  urllib.request
    response = urllib.request.urlopen('http://www.baidu.com')

    三、urllib.request

    1、urlopen函數

    urllib.request.urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,*, cafile=None, capath=None, cadefault=False, context=None)

    url參數

    from urllib import request
    response = request.urlopen('http://www.baidu.com')
    print(response.read().decode('utf-8'))

    data參數

    沒有data參數時,發送的是一個get請求,加上data參數后,請求就變成了post方式(利用’http://httpbin.org測試網址)

    import urllib.request
    import urllib.parse
    
    data1= bytes(urllib.parse.urlencode({'word':'hello'}),encoding='utf-8')
    response = urllib.request.urlopen('http://httpbin.org/post',data = data1)
    print(response.read())

    data參數需要bytes類型,所以需要使用bytes()函數進行編碼,而bytes函數的第一個參數需要時str類型,所以使用urllib.parse.urlencode將字典轉化為字符串。

    timeout參數

    設置一個超時的時間,如果在這個時間內沒有響應,便會拋出異常

    import urllib.request
    
    try:
        response = urllib.request.urlopen('http://www.baidu.com', timeout=0.001)
        print(response.read())
    except:
        print('error') 

    將超時時間設置為0.001秒,在這個時間內,沒有響應,輸出error

    2、response 響應類型

    import urllib
    from urllib import request
     
    response = urllib.request.urlopen('http://www.baidu.com')
    print(type(response))

    狀態碼與響應頭

    import urllib
    from urllib import request
    
    response = urllib.request.urlopen('http://www.baidu.com')
    print(response.status)
    print(response.getheaders())
    print(response.getheader('Server'))

    read方法

    import urllib.request
    
    response = urllib.request.urlopen('http://www.baidu.com')
    print(type(response.read()))
    print(response.read().decode('utf-8'))

    response.read()返回的是bytes形式的數據,所以需要用decode(‘utf-8’)進行解碼。

    3、Request對象 

    如果我們需要發送復雜的請求,在urllib庫中就需要使用一個Request對象

    import urllib.request
     
    #直接聲明一個Request對象,并把url當作參數直接傳遞進來
    request = urllib.request.Request('http://www.baidu.com')
    response = urllib.request.urlopen(request)
    print(response.read().decode('utf-8'))

    聲明了一個Request對象,把url當作參數傳遞給這個對象,然后把這個對昂作為urlopen函數的參數

    更復雜的請求,加headers

    #利用Request對象實現一個post請求

    import urllib.request
    url = 'http://httpbin.org/post'
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'
    }
    data = {'word':'hello'}
    data = bytes(str(data),encoding='utf-8')
    req = urllib.request.Request(url = url,data = data,headers = headers,method = 'POST')
    response = urllib.request.urlopen(req)
    print(response.read().decode('utf-8'))

    上面的這個請求包含了請求方式、url,請求頭,請求體,邏輯清晰。

    Request對象還有一個add_header方法,這樣也可以添加多個鍵值對的header

    4、高級請求方式

    設置代理

    很多網站會檢測某一段時間某個IP的訪問次數(通過流量統計,系統日志等),如果訪問次數多的不像正常人,它會禁止這個IP的訪問。ProxyHandler(設置代理的handler),可以變換自己的IP地址。

    from urllib import request # 導入request模塊
     
    url = 'http://httpbin.org' # url地址
    handler = request.ProxyHandler({'http': '122.193.244.243:9999'}) # 使用request模塊ProxyHandler類創建代理
    #handler = request.ProxyHandler({"http":"賬號:密碼@'122.193.244.243:9999'"})
    #付費代理模式 
    opener = request.build_opener(handler) # 用handler創建opener
    resp = opener.open(url) # 使用opener.open()發送請求
    print(resp.read()) # 打印返回結果

    cookie

    import urllib.request
    import urllib.parse
    
    url = 'https://weibo.cn/5273088553/info'
    # 正常的方式進行訪問
    # headers = {
    #     'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'
    # }
    #攜帶cookie進行訪問
    headers = {
        'GET https': '//weibo.cn/5273088553/info HTTP/1.1',
        'Host': ' weibo.cn',
        'Connection': ' keep-alive',
        'Upgrade-Insecure-Requests': ' 1',
        'User-Agent': ' Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',
        'Accept': ' text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
        # 'Referer: https':'//weibo.cn/',
        'Accept-Language': ' zh-CN,zh;q=0.9',
        'Cookie': ' _T_WM=c1913301844388de10cba9d0bb7bbf1e; SUB=_2A253Wy_dDeRhGeNM7FER-CbJzj-IHXVUp7GVrDV6PUJbkdANLXPdkW1NSesPJZ6v1GA5MyW2HEUb9ytQW3NYy19U; SUHB=0bt8SpepeGz439; SCF=Aua-HpSw5-z78-02NmUv8CTwXZCMN4XJ91qYSHkDXH4W9W0fCBpEI6Hy5E6vObeDqTXtfqobcD2D32r0O_5jSRk.; SSOLoginState=1516199821',
    }
    request = urllib.request.Request(url=url, headers=headers)
    response = urllib.request.urlopen(request)
    # 輸出所有
    # print(response.read().decode('gbk'))
    # 將內容寫入文件中
    with open('weibo.html', 'wb') as fp:
        fp.write(response.read())

    四、urllib.error

    可以捕獲三種異常:URLError,HTTPError(是URLError類的一個子類),ContentTooShortError

    URLError只有一個reason屬性

    HTTPError有三個屬性:code,reason,headers

    import urllib.request
    from urllib import error
    
    try:
        response = urllib.request.urlopen('http://123.com')
    except error.URLError as e:
        print(e.reason)
    import urllib
    from urllib import request
    from urllib import error
    #先捕捉http異常,再捕捉url異常
    try:
        response = urllib.request.urlopen('http://123.com')
    except error.HTTPError as e:
        print(e.reason, e.code, e.headers)
    except error.URLError as e:
        print(e.reason)
    else:
        print('RequestSucess!')

    五、URL解析urllib.parse

    urlparse函數

    該函數是對傳入的url進行分割,分割成幾部分,并對每部分進行賦值

    import urllib
    from urllib import parse
    
    result = urllib.parse.urlparse('http://www,baidu.com/index.html;user?id=5#comment')
    print(type(result))
    print(result)

    結果方便的拆分了url

    <class 'urllib.parse.ParseResult'>
    ParseResult(scheme='http', netloc='www,baidu.com', path='/index.html', params='user', query='id=5', fragment='comment')
    Process finished with exit code 0

    從輸出結果可以看出,這幾部分包括:協議類型、域名、路徑、參數、query、fragment

    urlparse有幾個參數:url,scheme,allow_fragments

    在使用urlparse時,可以通過參數scheme = 'http&rsquo;的方式來指定默認的協議類型,如果url有協議類型,scheme參數就不會生效了

    urlunparse函數

    與urlparse函數作用相反,是對url進行拼接的 

    Python爬蟲中urllib庫怎么用

    urljoin函數

    用來拼接url

    Python爬蟲中urllib庫怎么用

    urlencode函數

    可以把一個字典轉化為get請求參數

    Python爬蟲中urllib庫怎么用

    感謝各位的閱讀!關于“Python爬蟲中urllib庫怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

    向AI問一下細節

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

    AI

    玛曲县| 高邑县| 黑河市| 丰镇市| 镇江市| 宜昌市| 怀来县| 洪湖市| 鄂尔多斯市| 丰镇市| 化隆| 武宣县| 庆城县| 儋州市| 古田县| 鸡西市| 富民县| 上杭县| 城步| 宁远县| 怀仁县| 沧源| 淮阳县| 和林格尔县| 宜昌市| 池州市| 精河县| 曲周县| 尤溪县| 黎川县| 广州市| 丰原市| 通化县| 东光县| 金秀| 三江| 东乡族自治县| 平和县| 左权县| 元朗区| 晴隆县|