gpt4 book ai didi

python - 有没有办法在 shell 中处理 scrapy.Request 对象?

转载 作者:太空宇宙 更新时间:2023-11-03 14:55:16 25 4
gpt4 key购买 nike

在终端中,我跑了

scrapy startproject tutorial

我在 spiders 文件夹中创建了以下蜘蛛

import scrapy

class QuotesSpider(scrapy.Spider):
name = "quotes"
start_urls = ['http://quotes.toscrape.com/page/1/']

在终端中,我跑了

scrapy shell 'http://quotes.toscrape.com/page/1/'

这一切都工作正常,就像在打开的 Python shell 中一样

>>> response
<200 http://quotes.toscrape.com/page/1/>

现在,我跑了

>>> next_page = response.css('li.next a::attr(href)').extract_first()
>>> next_page
'/page/2/'

>>> response.follow(next_page)
<GET http://quotes.toscrape.com/page/2/>

>>> type(response.follow(next_page))
<class 'scrapy.http.request.Request'>

我想根据 next_page 的链接在 shell 中获取一个新的 Response 对象。这有可能吗?非常感谢任何帮助。

我已经尝试了以下方法,但无法修复错误。

>>> scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware.process_request(response.follow(next_page), "quotes")
Traceback (most recent call last):
File "<console>", line 1, in <module>
TypeError: process_request() missing 1 required positional argument: 'spider'

最佳答案

使用fetch() :

>>> fetch(response.follow(next_page))

关于python - 有没有办法在 shell 中处理 scrapy.Request 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45629370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com