0


26.Python 网络爬虫

目录

1.网络爬虫简介

网络爬虫是一种按照一定的规则,自动爬去万维网信息的程序或脚本。一般从某个网站某个网页开始,读取网页的内容,同时检索页面包含的有用链接地址,然后通过这些链接地址寻找下一个网页,再做相同的工作,一直循环下去,直到按照某种策略把互联网所有的网页都抓完为止。

网络爬虫的分类

网络爬虫大致有4种类型:通过网络爬虫、聚焦网络爬虫、增量式网络爬虫、深层网络爬虫。

  • 通用网络爬虫:爬取的目标数据巨大,并且范围非常广,性能要求非常高。主要应用在大型搜索引擎中,有非常高的应用价值,或者应用于大型数据提供商。
  • 聚焦网络爬虫:按照预先定义好的主题,有选择地进行网页爬取的一种爬虫。将爬取的目标网页定位在与主题相关的页面中,大大节省爬虫爬取时所需要的带宽资源和服务器资源。主要应用在对特定信息的爬取中为某一类特定的人群提供服务。
  • 增量式网络爬虫:在爬取网页的时候,只爬取内容发生变化的网页或者新产生的网页,对于内容未变化的网页,则不会爬。增量式网络爬虫在一定的程度上能够保证爬取的页面尽可能是新页面。
  • 深层网络爬虫:网页按存在方式可以分为表层页面和深层页面。表层页面指不需要提交表单,使用静态的链接就能够到达的静态页面;深层页面则隐藏在表单后面,不能通过静态链接直接获取,需要提交一定的关键词之后才能获取的页面。

网络爬虫的作用

1)搜索引擎:为用户提供相关且有效的内容,创建所有访问页面的快照以供后续处理。使用聚焦网络爬虫实现任何门户网站上的搜索引擎或搜索功能,有助于找到与搜索主题具有最高相关性的网页。

2)建立数据集:用于研究、业务和其他目的。

  • 了解和分析网民对公司或组织的行为。
  • 收集营销信息,并在短期内更好地做出营销决策。
  • 从互联网收集信息,分析他们并进行学术研究。
  • 收集数据,分析一个行业的长期发展趋势。
  • 监控竞争对手的实时变化。

网络爬虫的工作流程

预先设定一个或若干个初始种子URL开始,以此获得初始网页上的URL列表,在爬行过程中不断从URL队列中获取URL,进而访问并下载该页面。

当页面下载后,页面解析器去掉页面上的HTML标记并得到页面内容,将摘要、URL等信息保存到Web数据库中,同时抽取当前网页上新的URL,推入URL队列,知道满足系统停止条件。

2.使用urllib

python2:urllib+urllib2

python3:urllib2+urllib3

urllib 是Python中请求URL连接的官方标准库,共有4个模块:

  • urllib.request:主要负责构造和发起网络请求,定义了适用于各种复杂情况下打开URL的函数和类。
  • urllib.error:异常处理。
  • urllib.parse:解析各种数据格式。
  • urllib.robotparser:解析robots.txt文件。

发起请求

'''
http.client.HTTPResponse = urllib.request.urlopen(url,data,timeout,cafile,capath,context)
cafile,capath 使用https时使用
http.client.HTTPResponse = urllib.request.urlopen(urllib.request.Request)
返回响应对象
'''import urllib.request
baidu_url ='http://www.baidu.com'
sina_url ='http://www.sina.com'
r = urllib.request.urlopen(sina_url)# 发起请求,返回响应对象
h = r.read().decode('utf-8')# 读取数据并解码print(h)

提交数据:使用data参数提交数据

import urllib.request
import urllib.parse

baidu_url ='http://www.baidu.com'
sina_url ='http://www.sina.com'
p ={'name':'Python','author':'admin'}
d =bytes(urllib.parse.urlencode(p),encoding='utf8')# 进行编码,将字典转化为字符串再字节流
r = urllib.request.urlopen(sina_url,data=d,timeout=1)# 传入参数,发起请求,返回响应对象
h = r.read().decode('utf-8')# 读取数据并解码print(h)

设置请求头:需要指定请求头

'''
urllib.request.Request(url,data=None,headers={},origin_req_host=None,unverifiable=False,method=None)
'''# 浏览器,开发者工具,标头# urllib.request.Request(url,data=None,headers={},origin_req_host=None,unverifiable=False,method=None)import urllib.request
baidu_url ='http://www.baidu.com'
headers ={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'}
req = urllib.request.Request(url=baidu_url,headers=headers)
r = urllib.request.urlopen(req)
h = r.read().decode('utf-8')print(h)

使用代理:处理cookie等信息时。

'''
Handler
OpenerDirector
'''import urllib.request
baidu_url ='http://www.baidu.com'
headers ={'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'}# 通过第三方服务器寻找,具有实效性,可设置多个
proxy = urllib.request.ProxyHandler({'http':'125.71.212.17:9000','http':'113.71.212.17:9000'})
opener = urllib.request.build_opener(proxy)# 创建代理
urllib.request.install_opener(opener)# 安装代理
req = urllib.request.Request(url=baidu_url,headers=headers)
r = urllib.request.urlopen(req)
h = r.read().decode('utf-8')print(h)

认证登录:需要先登入才能访问浏览页面。

  1. 创建一个账号密码管理对象。
  2. 添加账号和密码。
  3. 获取一个handler对象。
  4. 获取opener对象。
  5. 使用open()函数发起请求。
import urllib.request
url ='http://cnblogs.com/xtznb'
user ='user'
password ='password'
pwdmgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()# 创建一个账号密码管理对象
pwdmgr.add_password(None,url,user,password)# 添加账号和密码
auth_handler = urllib.request.HTTPBasicAuthHandler(pwdmgr)# 获取一个handler对象
opener = urllib.request.build_opener(auth_handler)# 获取opener对象
response = opener.open(url)# 使用open()函数发起请求print(response.read().decode('utf-8'))

设置Cookies:页面每次需要生成验证,可以使用Cookies自动登入。

  1. 实例化Cookies对象。
  2. 构建一个handler对象。
  3. 使用opener对象的open()发起请求。
import urllib.request
import http.cookiejar
url ='http://tieba.baidu.com'file='cookie.txt'
cookie = http.cookiejar.CookieJar()# 实例化Cookies对象
handler = urllib.request.HTTPCookieProcessor(cookie)# 构建一个handler对象
opener = urllib.request.build_opener(handler)
response = opener.open(url)# 使用opener对象的open()发起请求
f =open(file,'a')# 追加模式写入for i in cookie:# 迭代写入信息
    f.write(i.name +'='+ i.value +'\n')
f.close()# 关闭文件

3.使用request

requests模块是在urllib3模块基础上进行了高度封装,使用更方便,网络请求也变得更加简洁和人性化。在爬取数据时,urllib爬取数据之后直接断开连接,而requests爬取数据之后可以继续复用socket,并没有断开连接。

发起GET请求

使用requests模块的get()方法可以发送GET请求。

'''
response = get(url,params=None,**kwargs)
url:请求的URL地址
params:字典或字节序列,作为参数增加到URL中
**kwargs:控制访问的参数
'''import requests
r = requests.get('http://www.baidu.com')print(r.url)# http://www.baidu.com/print(r.cookies)# <RequestsCookieJar[<Cookie BDORZ=27315 for .baidu.com/>]>
r.encoding ='utf-8'print(r.encoding)# utf-8print(r.text)# 网页源代码print(r.content)# 二进制字节流print(r.headers)# 文件头print(r.status_code)# 状态码# 手工附加
r = requests.get('http://www.baidu.com/?key=val')# 使用params关键字参数
payload1 ={'key1':'value1','key2':'value2'}
r = requests.get('http://www.baidu.com',params=payload1)
payload2 ={'key1':'value1','key2':['value2','value3']}
r = requests.get('http://www.baidu.com',params=payload2)# 请求头形式
headers ={'Content-Type':'text/html; charset=utf-8','User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'}
r = requests.get('http://www.baidu.com',headers=headers)# 设置代理
headers ={'Content-Type':'text/html; charset=utf-8','User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'}
p ={'http':'120.25.253.234.0000'}
r = requests.get('http://www.baidu.com',headers=headers,proxies=p)

也可以使用timeout参数设置延时时间,使用verify参数设置整数验证,使用cookies参数传递cookie信息等。

发送POST请求

HTTP协议规定POST提交的数据必须放在消息主题中,但协议并没有规定数据必须使用什么编码方式,具体的编码方式有3种:

  • form表单形式:application/x-www-form-urlencoded
  • JSON字符串提交数据:application/json
  • 上传文件:multipart/form-data

发送POST请求,可以使用post()方法,也返回一个Response对象。

示例1:form形式发送POST请求。

import requests
payload ={'key1':'value1','key2':'value2'}
r = requests.post('http://httpbin.org/post',params=payload)print(r.text)'''输出
{
  "args": {
    "key1": "value1", 
    "key2": "value2"
  }, 
  "data": "", 
  "files": {}, 
  "form": {}, 
  "headers": {
    "Accept": "*/*", 
    "Accept-Encoding": "gzip, deflate", 
    "Content-Length": "0", 
    "Host": "httpbin.org", 
    "User-Agent": "python-requests/2.27.1", 
    "X-Amzn-Trace-Id": "Root=1-656f516d-18cccab474d121d705eb3ad9"
  }, 
  "json": null, 
  "origin": "218.104.29.129", 
  "url": "http://httpbin.org/post?key1=value1&key2=value2"
}
'''

示例2:JSON格式发送POST请求。

import requests
import json
payload ={'key1':'value1','key2':'value2'}
r = requests.post('http://httpbin.org/post',data=json.dumps(payload))print(r.text)'''
{
  "args": {}, 
  "data": "{\"key1\": \"value1\", \"key2\": \"value2\"}", 
  "files": {}, 
  "form": {}, 
  "headers": {
    "Accept": "*/*", 
    "Accept-Encoding": "gzip, deflate", 
    "Content-Length": "36", 
    "Host": "httpbin.org", 
    "User-Agent": "python-requests/2.27.1", 
    "X-Amzn-Trace-Id": "Root=1-656f5282-3f08151e1fbbeec54501ed80"
  }, 
  "json": {
    "key1": "value1", 
    "key2": "value2"
  }, 
  "origin": "218.104.29.129", 
  "url": "http://httpbin.org/post"
}
'''

示例3:上传文件发送POST请求。

# 新建文本文件report.txt,输入一行Hello worldimport requests
files ={'file':open('report.txt','rb')}
r = requests.post('http://httpbin.org/post',files=files)print(r.text)'''
{
  "args": {}, 
  "data": "", 
  "files": {
    "file": "Hello world"
  }, 
  "form": {}, 
  "headers": {
    "Accept": "*/*", 
    "Accept-Encoding": "gzip, deflate", 
    "Content-Length": "157", 
    "Content-Type": "multipart/form-data; boundary=44a0c52d3705bdc2a8a6ffa85ccc00bc", 
    "Host": "httpbin.org", 
    "User-Agent": "python-requests/2.27.1", 
    "X-Amzn-Trace-Id": "Root=1-656f538f-5c062ec1599c4fbe082aa840"
  }, 
  "json": null, 
  "origin": "218.104.29.129", 
  "url": "http://httpbin.org/post"
}
'''

requests 不仅提供了GET和POST请求方式,还提供了其他请求方式:put、delete、head、options。

GET主要用于从指定的资源请求数据,而POST主要用于向指定的资源提交要被处理的数据。

4.使用BeautifulSoup

使用requests模块仅能抓去一些网页源码,但是如何对源码进行筛选、过滤,精确找到需要的数据,就要用到BeautifulSoup。它是一个可以从HTML或XML文件中提取数据的Python库。

BeautifulSoup支持Python标准库种的HTML解析器,还支持一些第三方的解析器,如果不安装,则python默认的解析器,lxml解析器就更加强大,速度更快,推荐使用lxml解析器。

解析器字符串

  • html.parserBeautifulSoup(html,'html.parser')默认执行速度一般,容错能力强。
  • lxmlBeautifulSoup(html,'lxml')速度快文档容错能力强。
  • xmlBeautifulSoup(html,'xml')速度快,主要针对XML文档。
  • html5libBeautifulSoup(html,'html5lib')最好的容错性,主要针对HTML5文档。

BeautifulSoup自动将输入文档转换为Unicode编码,输出文档转换为UTF-8编码。

环境配置

'''
pip install beautifulsoup4
# 需要调用HTML解析器,安装如下
pip install html5lib
pip install lxml
'''

示例3

# 新建test.html,输入以下内容<!DOCTYPE html><html><head><meta charset="utf-8"><title>Hello,world</title></head><body><div class="book"><span><!--这里是注释的部分--></span><a href="https://www.baidu.com">百度一下,你就知道</a><p class="a">这是一个示例</p></div></body></html># 新建py文件from bs4 import BeautifulSoup
f =open('paichong/test.html','r',encoding='utf-8')# 打开文件
html = f.read()
f.close()
soup = BeautifulSoup(html,'html5lib')# 指定html5lib解析器print(type(soup))

节点对象

BeautifulSoup将复杂HTML文档转换成一个复杂的树形结构,每个节点都是Python对象,对象归纳为:Tag、NavigableString、BeautifulSoup、Comment。

  • Tag:标签
  • NavigableString:标签包裹的文本
  • BeautifulSoup:解析网页所得到的对象
  • Comment:注释或者特殊字符串。
from bs4 import BeautifulSoup
f =open('paichong/test.html','r',encoding='utf-8')# 打开文件
html = f.read()
f.close()
soup = BeautifulSoup(html,'html5lib')# 指定html5lib解析器print(type(soup))
tag = soup.p # 读取p标签print(tag.name)# 读取p标签名称print(tag["class"])# 属性值print(tag.get_text())# 文本

文档遍历

遍历节点属性如下:

  • contents:获取所有字节点,包含NavigableString对象,返回的是一个列表。
  • children:获取所有子节点,返回的是一个迭代器。
  • descendants:获取所有子孙节点,返回的是一个迭代器。
  • string:获取直接包含的文本。
  • strings:获取全部包含的文本,返回一个可迭代对象。
  • parent:获取上一层父节点。
  • parents:获取父辈节点,返回一个可迭代对象。
  • next_sibling:获取当前节点的下一个兄弟节点。
  • next_siblings:获取当前节点的下方所有兄弟节点。
  • previous_sibling:获取当前节点的上一个兄弟节点。
  • previous_siblings:获取当前节点的上方所有兄弟节点。
from bs4 import BeautifulSoup
f =open('paichong/test.html','r',encoding='utf-8')# 打开文件
html = f.read()
f.close()
soup = BeautifulSoup(html,'html5lib')# 指定html5lib解析器
tags = soup.head.children # 获取head的所有子节点print(tags)for tag in tags:print(tag)

文档搜索

  • find_all(name[,name1,…]):name为标签名称,直接标签字符串过滤。
  • find_all(attires = {‘属性名称’:‘属性值’}): 搜索属性。
  • find_all(name,text=”文本内容“) :搜索文本
  • find_all(name,recursive=False):限制查找范围。
  • find_all(re.compile(”b”)):正则表达式。
a = soup.find_all('a',text='百度一下,你就知道')
a = soup.find_all(re.compile('a'))print(a)

CSS选择器

select() 方法传入字符串参数。详细见:http://www.w3.org/TR/CSS2/selector.html。

from bs4 import BeautifulSoup
import re
f =open('paichong/test.html','r',encoding='utf-8')# 打开文件
html = f.read()
f.close()
soup = BeautifulSoup(html,'html5lib')# 指定html5lib解析器
tags = soup.select(".a")print(tags)# [<p class="a">这是一个示例</p>]
标签: 爬虫 python

本文转载自: https://blog.csdn.net/weixin_50357986/article/details/134820830
版权归原作者 有请小发菜 所有, 如有侵权,请联系我们删除。

“26.Python 网络爬虫”的评论:

还没有评论