我正在从另一个脚本运行抓取蜘蛛,我需要从Crawler检索并保存到变量统计信息。我已经研究了文档和其他StackOverflow问题,但无法解决此问题。

这是我正在从中运行的脚本:

import scrapy
from scrapy.crawler import CrawlerProcess


process = CrawlerProcess({})
process.crawl(spiders.MySpider)
process.start()

stats = CrawlerProcess.stats.getstats() # I need something like this


我希望统计信息包含以下数据(scrapy.statscollectors):

     {'downloader/request_bytes': 44216,
     'downloader/request_count': 36,
     'downloader/request_method_count/GET': 36,
     'downloader/response_bytes': 1061929,
     'downloader/response_count': 36,
     'downloader/response_status_count/200': 36,
     'finish_reason': 'finished',
     'finish_time': datetime.datetime(2018, 11, 9, 16, 31, 2, 382546),
     'log_count/DEBUG': 37,
     'log_count/ERROR': 35,
     'log_count/INFO': 9,
     'memusage/max': 62623744,
     'memusage/startup': 62623744,
     'request_depth_max': 1,
     'response_received_count': 36,
     'scheduler/dequeued': 36,
     'scheduler/dequeued/memory': 36,
     'scheduler/enqueued': 36,
     'scheduler/enqueued/memory': 36,
     'start_time': datetime.datetime(2018, 11, 9, 16, 30, 38, 140469)}


我检查了CrawlerProcess,它在抓取过程完成后返回延迟并从其“爬网程序”字段中删除爬网程序。

有办法解决吗?

最好,
彼得

最佳答案

根据the documentationCrawlerProcess.crawl接受搜寻器或蜘蛛类,并且您可以通过CrawlerProcess.create_crawler从蜘蛛类创建搜寻器。

因此,您可以在开始搜寻过程之前创建搜寻器实例,然后在其后检索所需的属性。

下面,通过编辑几行原始代码为您提供示例:

import scrapy
from scrapy.crawler import CrawlerProcess


class TestSpider(scrapy.Spider):
    name = 'test'
    start_urls = ['http://httpbin.org/get']

    def parse(self, response):
        self.crawler.stats.inc_value('foo')


process = CrawlerProcess({})
crawler = process.create_crawler(TestSpider)
process.crawl(crawler)
process.start()


stats_obj = crawler.stats
stats_dict = crawler.stats.get_stats()
# perform the actions you want with the stats object or dict

07-25 21:51