中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

常用網絡爬蟲模塊是什么

發布時間:2020-07-10 14:12:50 來源:億速云 閱讀:222 作者:清晨 欄目:編程語言

小編給大家分享一下常用網絡爬蟲模塊是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

urllib模塊

urllib庫是python中自帶的模塊,也是一個最基本的網絡請求庫,該模塊提供了一個urlopen()方法,通過該方法指定URL發送網絡請求來獲取數據。

urllib 是一個收集了多個涉及 URL 的模塊的包

urllib.request 打開和讀取 URL

三行代碼即可爬取百度首頁源代碼:

import urllib.request
# 打開指定需要爬取的網頁
response=urllib.request.urlopen('http://www.baidu.com')
# 或者是 
# from urllib import request
# response = request.urlopen('http://www.baidu.com')
# 打印網頁源代碼
print(response.read().decode())

加入decode()是為了避免出現下圖中十六進制內容

常用網絡爬蟲模塊是什么

加入decode()進行解碼后

常用網絡爬蟲模塊是什么

下面三種本篇將不做詳述

urllib.error 包含 urllib.request 拋出的異常

urllib.parse 用于解析 URL

urllib.robotparser 用于解析 robots.txt 文件

requests模塊

requests模塊是python中實現HTTP請求的一種方式,是第三方模塊,該模塊在實現HTTP請求時要比urllib模塊簡化很多,操作更加人性化。

GET請求為例:

import requests
response = requests.get('http://www.baidu.com/')
print('狀態碼:', response.status_code)
print('請求地址:', response.url)
print('頭部信息:', response.headers)
print('cookie信息:', response.cookies)
# print('文本源碼:', response.text)
# print('字節流源碼:', response.content)

輸出結果如下:

狀態碼: 200
請求地址: http://www.baidu.com/
頭部信息: {'Cache-Control': 'private, no-cache, no-store, proxy-revalidate, no-transform', 'Connection': 'keep-alive', 'Content-Encoding': 'gzip', 'Content-Type': 'text/html', 'Date': 'Sun, 10 May 2020 02:43:33 GMT', 'Last-Modified': 'Mon, 23 Jan 2017 13:28:23 GMT', 'Pragma': 'no-cache', 'Server': 'bfe/1.0.8.18', 'Set-Cookie': 'BDORZ=27315; max-age=86400; domain=.baidu.com; path=/', 'Transfer-Encoding': 'chunked'}
cookie信息: <RequestsCookieJar[<Cookie BDORZ=27315 for .baidu.com/>]>

這里講解一下response.textresponse.content的區別:

response.content是直接從網絡上面抓取的數據,沒有經過任何解碼,所以是一個 bytes類型

response.text是將response.content進行解碼的字符串,解碼需要指定一個編碼方式, requests會根據自己的猜測來判斷編碼的方式,所以有時候可能會猜測錯誤,就會導致解碼產生亂碼,這時候就應該使用 response.content.decode(‘utf-8’)

進行手動解碼

POST請求為例

import requests
data={'word':'hello'}
response = requests.post('http://www.baidu.com',data=data)
print(response.content)

請求headers處理

當爬取頁面由于該網頁為防止惡意采集信息而使用反爬蟲設置,從而拒絕用戶訪問,我們可以通過模擬瀏覽器的頭部信息來進行訪問,這樣就能解決反爬蟲設置的問題。

通過瀏覽器進入指定網頁,右擊鼠標,選中“檢查”,選擇“Network”,刷新頁面后選擇第一條信息,右側消息頭面板將顯示下圖中請求頭部信息

常用網絡爬蟲模塊是什么

例如:

import requests
url = 'https://www.bilibili.com/'
headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36'}
response = requests.get(url, headers=headers)
print(response.content.decode())

網絡超時

在訪問一個頁面,如果該頁面長時間未響應,系統就會判斷該網頁超時,所以無法打開網頁。

例如:

import requests
url = 'http://www.baidu.com'
# 循環發送請求50次
for a in range(0, 50):
    try:
   # timeout數值可根據用戶當前網速,自行設置
        response = requests.get(url, timeout=0.03) # 設置超時為0.03
        print(response.status_code)
    except Exception as e:
        print('異常'+str(e)) # 打印異常信息

部分輸出結果如下:

常用網絡爬蟲模塊是什么

代理服務

設置代理IP可以解決不久前可以爬取的網頁現在無法爬取了,然后報錯——由于連接方在一段時間后沒有正確答復或連接的主機沒有反應,連接嘗試失敗的問題。

以下網站可以提供免費代理IP
https://www.xicidaili.com/

例如:

import requests
# 設置代理IP
proxy = {'http': '117.45.139.139:9006',
         'https': '121.36.210.88:8080'
         }
# 發送請求
url = 'https://www.baidu.com'
response = requests.get(url, proxies=proxy)
# 也就是說如果想取文本數據可以通過response.text
# 如果想取圖片,文件,則可以通過 response.content
# 以字節流的形式打印網頁源代碼,bytes類型
print(response.content.decode())
# 以文本的形式打印網頁源代碼,為str類型
print(response.text) # 默認”iso-8859-1”編碼,服務器不指定的話是根據網頁的響應來猜測編碼。

Beautiful Soup模塊

Beautiful Soup模塊是一個用于HTML和XML文件中提取數據的python庫。Beautiful Soup模塊自動將輸入的文檔轉換為Unicode編碼,輸出文檔轉換為UTF-8編碼,你不需要考慮編碼方式,除非文檔沒有指定一個編碼方式,這時,Beautiful Soup就不能自動識別編碼方式了,然后,僅僅需要說明一下原始編碼方式就可以了。

例如:

from bs4 import BeautifulSoup
html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
# 創建對象
soup = BeautifulSoup(html_doc, features='lxml')
# 或者創建對象打開需要解析的html文件
# soup = BeautifulSoup(open('index.html'), features='lxml')
print('源代碼為:', soup)# 打印解析的HTML代碼

運行結果如下:

<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>,
<a class="sister" href="http://example.com/lacie" id="link2">Lacie</a> and
<a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
</body></html>

用Beautiful Soup爬取百度首頁標題

from bs4 import BeautifulSoup
import requests
response = requests.get('http://news.baidu.com')
soup = BeautifulSoup(response.text, features='lxml')
print(soup.find('title').text)

運行結果如下:

百度新聞——海量中文資訊平臺

看完了這篇文章,相信你對常用網絡爬蟲模塊是什么有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

奇台县| 岳池县| 图片| 玛曲县| 安国市| 印江| 北碚区| 金湖县| 文安县| 新龙县| 新巴尔虎左旗| 治县。| 临猗县| 都匀市| 永吉县| 巴青县| 莎车县| 修武县| 凯里市| 右玉县| 牡丹江市| 华蓥市| 甘泉县| 同德县| 剑川县| 太白县| 绥江县| 通许县| 嘉义县| 广东省| 磐安县| 浪卡子县| 阳朔县| 汝阳县| 西宁市| 兴山县| 永清县| 云阳县| 开鲁县| 闽清县| 马关县|