我是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变量定义为全局,甚至有一些不好的副作用。 如果我跳过那一行,那么我当然得到“未定义的变量”错误:/ 因此,我正在寻找一种方法来返回变量并在我的主脚本中使用它。
我已阅读有关项目管道但我无法使其正常工作。
非常感谢任何帮助/想法:) 提前谢谢!
答案 0 :(得分:2)
制作变量global
应该适合您所需要的,但正如您所提到的那样,它并不是一种好的风格。
我实际上建议使用不同的服务进行流程之间的通信,例如Redis,这样您就不会在蜘蛛和任何其他进程之间发生冲突。
设置和使用非常简单,文档有very simple example。
在蜘蛛内实例化redis连接,再在主进程上实例化(将它们视为单独的进程)。蜘蛛设置变量,主进程读取(或get
s)信息。
答案 1 :(得分:0)
使用global
并不是一种好的风格,尤其是当您需要扩展需求时。
我的建议是将标题存储到文件或列表中并在主进程中使用它,或者如果要在其他脚本中处理标题,则只需打开文件并在脚本中读取标题
(注意:请忽略缩进问题)
spider.py
import scrapy
from scrapy.crawler import CrawlerProcess
namefile = 'namefile.txt'
current_title_session = []#title stored in current session
file_append = open(namefile,'a',encoding = 'utf-8')
try:
title_in_file = open(namefile,'r').readlines()
except:
title_in_file = open(namefile,'w')
class QuotesSpider(scrapy.Spider):
name = "quotes"
start_urls = [
'http://quotes.toscrape.com/page/1/'
]
custom_settings = {
'LOG_ENABLED': 'False',
}
def parse(self, response):
title = response.css('title::text').extract_first()
if title +'\n' not in title_in_file and title not in current_title_session:
file_append.write(title+'\n')
current_title_session.append(title)
if __name__=='__main__':
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