python爬虫中urllib.request和requests有什么区别?

824次阅读
没有评论

python爬虫中urllib.request和requests有什么区别?

在学习python爬虫,想要检索request相关内容时,往往会出现urllib.request和requests这两个词,urllib.request和requests都是python爬虫的模块,其中urllib.request是urllib库模块的请求模块,主要用来打开或者读取url,requestspython中原生的一款基于网络请求的模块,主要用于模拟浏览器发请求。本文向大家介绍python爬虫中urllib.request和requests的区别。

一、urllib.request :

urllib库模块的请求模块,主要用来打开或者读取url

返回体获取有效信息和请求体的拼接需要decode和encode后再进行装载。进行http请求时需先构造get或者post请求再进行调用。header等头文件也需先进行构造。

导入方法

Python3 自带的模块(不需要下载,导入即可使用)

from urllib import request 
import urllib.request

使用实例

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中原生的一款基于网络请求的模块,主要用于模拟浏览器发请求。

requests可以直接构造get,post请求并发起,而urllib.request只能先构造get,post请求,再发起。

导入方法

import requests

使用实例

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)

以上就是python爬虫中urllib.request和requests的区别,在使用python爬虫时,更建议用requests库,因为requests比urllib更加⽅便,可以节约我们⼤量的⼯作,完全满⾜HTTP测试需求,

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-07-18发表,共计1432字。
新手QQ群:570568346,欢迎进群讨论 Python51学习