Python----Python爬虫(Scrapy的应用:CrawlSpider 使用,爬取小说,CrawlSpider版)

devtools/2025/1/15 15:49:38/

一、CrawlSpider 使用

1.1、CrawlSpider

CrawSpiders 是 Scrapy 框架中的一个特殊爬虫类,它用于处理需要跟随链接并抓取多个页面的情况。相比于基本的 Spider 类,CrawSpiders 提供了一个更灵活、更强大的方式来定义爬取规则。

在Scrapy中Spider是所有爬虫的基类,而CrawSpiders就是Spider的派生类。

适用于先爬取start_url列表中的网页,再从爬取的网页中获取link并继续爬取的工作

 

1.2、使用 CrawlSpider 的基本步骤


定义爬虫类:从 CrawlSpider 继承并定义爬虫类。


设置起始 URL:通过 start_urls 属性定义要开始爬取的 URL。


定义解析规则:通过 rules 属性设置爬取规则,这通常包括为页面提取数据和跟随链接的规则。 

 创建CrawlSpider

        

python">scrapy genspider -t crawl 爬虫名 (allowed_url)

 1.3、使用CrawlSpider中核心的2个类对象

1.3.1、Rule对象

Rule类与CrawlSpider类都位于scrapy.contrib.spiders模块中

python">class scrapy.contrib.spiders.Rule( link_extractor,         callback=None,cb_kwargs=None,follow=None,process_links=None,process_request=None) 

 

参数含义:

        link_extractor为LinkExtractor,用于定义需要提取的链接

        callback参数:当link_extractor获取到链接时参数所指定的值作为回调函数

                注意 回调函数尽量不要用parse方法,crawlspider已使用了parse方法

        follow:指定了根据该规则从response提取的链接是否需要跟进。当callback为None,默认值为True

        process_links:主要用来过滤由link_extractor获取到的链接

        process_request:主要用来过滤在rule中提取到的request

1.3.2、LinkExtractors

顾名思义,链接提取器

response对象中获取链接,并且该链接会被接下来爬取 每个LinkExtractor有唯一的公共方法是 extract_links(),它接收一个 Response 对象,并返回一个 scrapy.link.Link 对象 

python">class scrapy.linkextractors.LinkExtractor(allow = (),deny = (),allow_domains = (),deny_domains = (),deny_extensions = None,restrict_xpaths = (),tags = ('a','area'),attrs = ('href'),canonicalize = True,unique = True,process_value = None
)
  • allow:满足括号中“正则表达式”的值会被提取,如果为空,则全部匹配。

  • deny:与这个正则表达式(或正则表达式列表)不匹配的URL一定不提取。

  • allow_domains:会被提取的链接的domains。

  • deny_domains:一定不会被提取链接的domains。

  • restrict_xpaths:使用xpath表达式,和allow共同作用过滤链接(只选到节点,不选到属性)

  • restrict_css:使用css表达式,和allow共同作用过滤链接(只选到节点,不选到属性)

1.4、shell中验证 

首先运行

python">scrapy shell 'https://www.52wx.com/335_335954/131105239.html'

继续import相关模块:

python">from scrapy.linkextractors import LinkExtractor

提取当前网页中获得的链接

python">link = LinkExtractor(restrict_xpaths=(r'//div[@class="section-opt m-bottom-opt"]/a[3]'))

调用LinkExtractor实例的extract_links()方法查询匹配结果

python"> link.extract_links(response)
  • callback后面函数名用引号引起
  • 函数名不要用parse
  • 参数的括号嵌套,不要出问题

二、Scrapy爬取小说--普通版

spider 

python">import scrapyclass XiaoshuoSpider(scrapy.Spider):name = "xiaoshuo"allowed_domains = ["52wx.com"]start_urls = ["https://www.52wx.com/335_335954/131105239.html"]def parse(self, response):name=response.xpath('//div[@class="reader-main"]/h1/text()').get()new_url=response.xpath('//div[@class="section-opt m-bottom-opt"]/a[3]/@href').get()content=response.xpath('//div[@class="content"]/text()').extract()yield{'name':name,'content':content}next_url='https://www.52wx.com/335_335954/'+new_urlyield scrapy.Request(next_url,callback=self.parse)

 pipeline

python"># Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html# useful for handling different item types with a single interface
from itemadapter import ItemAdapterclass Scrapy03Pipeline:def open_spider(self,spider):self.file=open('xiaoshuo.txt','w',encoding='utf-8')def process_item(self, item, spider):self.file.write(item['name']+'\n')self.file.write(''.join(item['content']).replace('\r\n',''))def close_spider(self,spider):self.file.close()

 settings.py 

三、Scrapy爬取小说--CrawlSpider版

spider

python">import scrapy
from scrapy.linkextractors import LinkExtractor
from scrapy.spiders import CrawlSpider, Ruleclass XsSpider(CrawlSpider):name = "xs"allowed_domains = ["52wx.com"]start_urls = ["https://www.52wx.com/335_335954/"]rules = (Rule(LinkExtractor(restrict_xpaths=('//div[@class="section-box"][2]/ul/li/a[1]')), callback="parse_item", follow=True),Rule(LinkExtractor(restrict_xpaths=('//div[@class="section-opt m-bottom-opt"]/a[3]')), callback="parse_item", follow=True),)def parse_item(self, response):name=response.xpath('//div[@class="reader-main"]/h1/text()').get()content=response.xpath('//div[@class="content"]/text()').extract()print(content)yield{'name':name,'content':content}

 pipeline 

python"># Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html# useful for handling different item types with a single interface
from itemadapter import ItemAdapterclass Scrapy03Pipeline:def open_spider(self,spider):self.file=open('xiaoshuo.txt','w',encoding='utf-8')def process_item(self, item, spider):self.file.write(item['name']+'\n')self.file.write(''.join(item['content']).replace('\r\n',''))def close_spider(self,spider):self.file.close()

settings.py 

 

四、思维导图


http://www.ppmy.cn/devtools/150715.html

相关文章

Redis十大数据类型详解

Redis(一) 十大数据类型 redis字符串(String) string是redis最基本的类型,一个key对应一个value string类型是二进制安全的,意思是redis的string可以包含任何数据。例如说是jpg图片或者序列化对象 一个re…

XML通过HTTP POST 请求发送到指定的 API 地址,进行数据回传

代码结构说明 这段代码的主要功能是: 从指定文件夹中读取所有 XML 文件。 将每个 XML 文件的内容通过 HTTP POST 请求发送到指定的 API 地址。 处理服务器的响应,并记录每个文件的处理结果。 using System; using System.IO; using System.Net; usin…

Browser-Use Web UI:浏览器自动化与AI的完美结合

Browser-Use Web UI:浏览器自动化与AI的完美结合 前言简介一、克隆项目二、安装与环境配置1. Python版本要求2. 安装依赖3. 安装 Playwright4. 配置环境变量(非必要步骤)三、启动 WebUI四、配置1. Agent设置2. 大模型设置3. 浏览器相关设置4. 运行 Agent结语前言 Web UI是在…

latex 中不要求显示页码

在 LaTeX 中,如果你不希望显示页码,可以使用以下几种方法来实现。选择哪种方法取决于你使用的文档类和具体的排版需求。 方法 1: 使用 \pagestyle{empty} 这是最简单的方法之一,适用于大多数标准文档类(如 article、report 和 b…

MySQL数据库(SQL分类)

SQL分类 分类全称解释DDLData Definition Language数据定义语言,用来定义数据库对象(数据库,表,字段)DMLData Manipulation Language数据操作语言,用来对数据库表中的数据进行增删改DQLData Query Languag…

vim基本命令(vi、工作模式、普通模式、插入模式、可视模式、命令行模式、复制、粘贴、插入、删除、查找、替换)

1. Vim的作用 1.1. 文本编辑 1.1.1. 基础文本编辑功能 Vim是一个功能强大的文本编辑器,它可以用来创建、修改和保存各种文本文件。无论是编写简单的文本笔记,还是复杂的代码文件,Vim都能胜任。例如,我们可以用它来编写Python脚…

使用 selenium-webdriver 开发 Web 自动 UI 测试程序

优缺点 优点 有时候有可能一个改动导致其他的地方的功能失去效果,这样使用 Web 自动 UI 测试程序可以快速的检查并定位问题,节省大量的人工验证时间 缺点 增加了维护成本,如果功能更新过快或者技术更新过快,维护成本也会随之提高…

【C++课程学习】:C++11(C++发展,列表初始化,声明auto,typeid,decltype)

🎁个人主页:我们的五年 🔍系列专栏:C课程学习 🎉欢迎大家点赞👍评论📝收藏⭐文章 C学习笔记: https://blog.csdn.net/djdjiejsn/category_12682189.html 前言: C11相…