python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析

时间:2021-11-14 23:24:49

一、CrawlSpider类介绍

1.1 引入

使用scrapy框架进行全站数据爬取可以基于Spider类,也可以使用接下来用到的CrawlSpider类。基于Spider类的全站数据爬取之前举过栗子,感兴趣的可以康康

scrapy基于CrawlSpider类的全站数据爬取

1.2 介绍和使用

1.2.1 介绍

CrawlSpider是Spider的一个子类,因此CrawlSpider除了继承Spider的特性和功能外,还有自己特有的功能,主要用到的是 LinkExtractor()rules = (Rule(LinkExtractor(allow=r'Items/'), callback='parse_item', follow=True),)

LinkExtractor():链接提取器
LinkExtractor()接受response对象,并根据allow对应的正则表达式提取响应对象中的链接

  1. link = LinkExtractor(
  2. # Items只能是一个正则表达式,会提取当前页面中满足该"正则表达式"的url
  3.   allow=r'Items/'
  4. )

rules = (Rule(link, callback='parse_item', follow=True),):规则解析器
按照指定规则从链接提取器中提取到的链接中解析网页数据
link:是一个LinkExtractor()对象,指定链接提取器
callback:回调函数,指定规则解析器(解析方法)解析数据
follow:是否将链接提取器继续作用到链接提取器提取出的链接网页

  1. import scrapy
  2. # 导入相关的包
  3. from scrapy.linkextractors import LinkExtractor
  4. from scrapy.spiders import CrawlSpider, Rule
  5.  
  6. class TextSpider(CrawlSpider):
  7. name = 'text'
  8. allowed_domains = ['www.xxx.com']
  9. start_urls = ['http://www.xxx.com/']
  10.  
  11. # 链接提取器,从接受到的response对象中,根据item正则表达式提取页面中的链接
  12. link = LinkExtractor(allow=r'Items/')
  13. link2 = LinkExtractor(allow=r'Items/')
  14. # 规则解析器,根据callback将链接提取器提取到的链接进行数据解析
  15. # follow为true,则表示将链接提取器继续作用到链接提取器所提取到的链接页面中
  16. # 故:在我们提取多页数据时,若第一页对应的网页中包含了第2,3,4,5页的链接,
  17. # 当跳转到第5页时,第5页又包含了第6,7,8,9页的链接,
  18. # 令follow=True,就可以持续作用,从而提取到所有页面的链接
  19. rules = (Rule(link, callback='parse_item', follow=True),
  20. Rule(link2,callback='parse_content',follow=False))
  21. # 链接提取器link使用parse_item解析数据
  22. def parse_item(self, response):
  23. item = {}
  24.  
  25. yield item
  26. # 链接提取器link2使用parse_content解析数据
  27. def parse_content(self, response):
  28. item = {}
  29.  
  30. yield item

1.2.2 使用

创建爬虫文件:除了创建爬虫文件不同外,创建项目和运行爬虫使用的命令和基于Spider类使用的命令相同

  1. scrapy genspider crawl -t spiderName www.xxx.com

二、案例:古诗文网全站数据爬取

爬取古诗文网首页古诗的标题,以及每一首诗详情页古诗的标题和内容。
最后将从详情页提取到的古诗标题和内容进行持久化存储

2.1 爬虫文件

  1. import scrapy
  2. from scrapy.linkextractors import LinkExtractor
  3.  
  4. from scrapy.spiders import CrawlSpider, Rule
  5. from gushiPro.items import GushiproItem,ContentItem
  6.  
  7. class GushiSpider(CrawlSpider):
  8. name = 'gushi'
  9. #allowed_domains = ['www.xxx.com']
  10. start_urls = ['https://www.gushiwen.org/']
  11.  
  12. # 链接提取器:只能使用正则表达式,提取当前页面的满足allow条件的链接
  13. link = LinkExtractor(allow=r'/default_\d+\.aspx')
  14.  
  15. # 链接提取器,提取所有标题对应的详情页url
  16. content_link = LinkExtractor(allow=r'cn/shiwenv_\w+\.aspx')
  17. rules = (
  18. # 规则解析器,需要解析所有的页面,所有follow=True
  19. Rule(link, callback='parse_item', follow=True),
  20.  
  21. # 不需要写follow,因为我们只需要解析详情页中的数据,而不是详情页中的url
  22. Rule(content_link, callback='content_item'),
  23. )
  24.  
  25. # 解析当前页面的标题
  26. def parse_item(self, response):
  27. p_list = response.xpath('//div[@class="sons"]/div[1]/p[1]')
  28.  
  29. for p in p_list:
  30. title = p.xpath('./a//text()').extract_first()
  31. item = GushiproItem()
  32. item['title'] = title
  33. yield item
  34.  
  35. # 解析详情页面的标题和内容
  36. def content_item(self,response):
  37. # //div[@id="sonsyuanwen"]/div[@class="cont"]/div[@class="contson"]
  38. # 解析详情页面的内容
  39. content = response.xpath('//div[@id="sonsyuanwen"]/div[@class="cont"]/div[@class="contson"]//text()').extract()
  40. content = "".join(content)
  41. # # 解析详情页面的标题
  42. title = response.xpath('//div[@id="sonsyuanwen"]/div[@class="cont"]/h1/text()').extract_first()
  43. # print("title:"+title+"\ncontent:"+content)
  44. item = ContentItem()
  45. item["content"] = content
  46. item["title"] = title
  47. # 将itme对象传给管道
  48. yield item

2.2 item文件

  1. import scrapy
  2.  
  3. # 不同的item类是独立的,他们可以创建不同的item对象
  4. class GushiproItem(scrapy.Item):
  5. # define the fields for your item here like:
  6. # name = scrapy.Field()
  7. title = scrapy.Field()
  8.  
  9. class ContentItem(scrapy.Item):
  10. title = scrapy.Field()
  11. content = scrapy.Field()

2.3 管道文件

  1. from itemadapter import ItemAdapter
  2.  
  3. class GushiproPipeline:
  4. def __init__(self):
  5. self.fp = None
  6.  
  7. def open_spider(self,spider):
  8. self.fp = open("gushi.txt",'w',encoding='utf-8')
  9. print("开始爬虫")
  10.  
  11. def process_item(self, item, spider):
  12. # 从详情页获取标题和内容,所以需要判断爬虫文件中传来的item是什么类的item
  13. # item.__class__.__name__判断属于什么类型的item
  14. if item.__class__.__name__ == "ContentItem":
  15. content = "《"+item['title']+"》",item['content']
  16. content = "".join(content)
  17. print(content)
  18. self.fp.write(content)
  19. return item
  20.  
  21. def close_spider(self,spider):
  22. self.fp.close()
  23. print("结束爬虫")

2.4 配置文件

python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析

2.5 输出结果

python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析

到此这篇关于python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析的文章就介绍到这了,更多相关python爬虫scrapy数据爬取内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/m0_46500590/article/details/113869392