您好,登錄后才能下訂單哦!
這篇文章給大家介紹python中urllib.request和requests的區(qū)別是什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
Python主要應(yīng)用于:1、Web開發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲;4、嵌入式應(yīng)用開發(fā);5、游戲開發(fā);6、桌面應(yīng)用開發(fā)。
一、urllib.request :
urllib庫(kù)模塊的請(qǐng)求模塊,主要用來(lái)打開或者讀取url
返回體獲取有效信息和請(qǐng)求體的拼接需要decode和encode后再進(jìn)行裝載。進(jìn)行http請(qǐng)求時(shí)需先構(gòu)造get或者post請(qǐng)求再進(jìn)行調(diào)用。header等頭文件也需先進(jìn)行構(gòu)造。
導(dǎo)入方法
Python3 自帶的模塊(不需要下載,導(dǎo)入即可使用)
from urllib import request import urllib.request
使用實(shí)例
from urllib import request headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36', } url = 'http://www.baidu.com' req = request.Request(url, headers=headers) response = request.urlopen(req) data = response.read().decode('UTF-8') print(data)
二、requests:
python中原生的一款基于網(wǎng)絡(luò)請(qǐng)求的模塊,主要用于模擬瀏覽器發(fā)請(qǐng)求。
requests可以直接構(gòu)造get,post請(qǐng)求并發(fā)起,而urllib.request只能先構(gòu)造get,post請(qǐng)求,再發(fā)起。
導(dǎo)入方法
import requests
使用實(shí)例
import requests headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36', } response = requests.get('http://www.baidu.com',headers=headers) response.encoding = 'utf-8' print(response)
關(guān)于python中urllib.request和requests的區(qū)別是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。