我对 Scrapy 很陌生,想尝试以下方法:从网页中提取一些值,将其存储在变量中并在我的主脚本中使用它。因此,我按照他们的教程并为我的目的更改了代码:
import scrapy
from scrapy.crawler import CrawlerProcess
class QuotesSpider(scrapy.Spider):
name = "quotes"
start_urls = [
'http://quotes.toscrape.com/page/1/'
]
custom_settings = {
'LOG_ENABLED': 'False',
}
def parse(self, response):
global title # This would work, but there should be a better way
title = response.css('title::text').extract_first()
process = CrawlerProcess({
'USER_AGENT': 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)'
})
process.crawl(QuotesSpider)
process.start() # the script will block here until the crawling is finished
print(title) # Verify if it works and do some other actions later on...
到目前为止,这可以工作,但我很确定这不是一个好的样式,或者如果我将 title 变量定义为全局变量,甚至会产生一些不好的副作用。如果我跳过该行,那么我当然会得到“未定义的变量”错误:/因此我正在寻找一种方法来返回变量并在我的主脚本中使用它。
我已阅读有关项目管道的信息,但无法使其工作。
任何帮助/想法都非常感谢:)在此先感谢!