scrapy框架请求传参处理(请求多个页面)
2022/5/24 23:50:04
本文主要是介绍scrapy框架请求传参处理(请求多个页面),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
前提
如果爬取解析的数据不在同一张页面中。(深度爬取)
实战
使用古诗词网站进行模拟
import scrapy from bossPro.items import BossproItem class BossSpider(scrapy.Spider): name = 'boss' # allowed_domains = ['www.xxx.com'] start_urls = ['https://www.shicimingju.com/category/all'] url = 'https://www.shicimingju.com/chaxun/zuozhe/1_%d.html' page_num = 2 # 回调函数接受item def parse_detail(self, response): item = response.meta['item'] detail = response.xpath('//*[@id="main_right"]/div[1]/div[2]/div[1]/div/text()').extract() detail = ''.join(detail) # print(job_desc) item['detail'] = detail yield item #数据解析处理 def parse(self, response): list_data = response.xpath('//*[@id="main_left"]/div') for li in list_data: name = li.xpath('./div[@class="zuozhe_list_item"]/h3/a/text()').extract_first() detail_url = li.xpath('./div[@class="zuozhe_list_item"]/h3/a/@href').extract_first() detail_url = 'https://www.shicimingju.com' + str(detail_url) #有空值需要处理下,如果没有空值可以不用str item = BossproItem() item['name'] = name # 对详情页发请求获取详情页的页面源码数据 # 手动请求的发送 # 请求传参:meta={},可以将meta字典传递给请求对应的回调函数 yield scrapy.Request(detail_url, callback=self.parse_detail, meta={'item': item}) #分页操作 if self.page_num <= 3: new_url = format(self.url%self.page_num) self.page_num += 1 yield scrapy.Request(new_url,callback=self.parse)
这篇关于scrapy框架请求传参处理(请求多个页面)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享
- 2024-11-22ansible 的archive 参数是什么意思?-icode9专业技术文章分享
- 2024-11-22ansible 中怎么只用archive 排除某个目录?-icode9专业技术文章分享
- 2024-11-22exclude_path参数是什么作用?-icode9专业技术文章分享
- 2024-11-22微信开放平台第三方平台什么时候调用数据预拉取和数据周期性更新接口?-icode9专业技术文章分享
- 2024-11-22uniapp 实现聊天消息会话的列表功能怎么实现?-icode9专业技术文章分享
- 2024-11-22在Mac系统上将图片中的文字提取出来有哪些方法?-icode9专业技术文章分享
- 2024-11-22excel 表格中怎么固定一行显示不滚动?-icode9专业技术文章分享
- 2024-11-22怎么将 -rwxr-xr-x 修改为 drwxr-xr-x?-icode9专业技术文章分享
- 2024-11-22在Excel中怎么将小数向上取整到最接近的整数?-icode9专业技术文章分享