我正试图改变Scrapy的统计数据中间件。
这是Scrapy的stats.py完整版:
from scrapy.exceptions import NotConfigured
from scrapy.utils.request import request_httprepr
from scrapy.utils.response import response_httprepr
class DownloaderStats(object):
def __init__(self, stats):
self.stats = stats
@classmethod
def from_crawler(cls, crawler):
if not crawler.settings.getbool('DOWNLOADER_STATS'):
raise NotConfigured
return cls(crawler.stats)
def process_request(self, request, spider):
self.stats.inc_value('downloader/request_count', spider=spider)
self.stats.inc_value('downloader/request_method_count/%s' % request.method, spider=spider)
reqlen = len(request_httprepr(request))
self.stats.inc_value('downloader/request_bytes', reqlen, spider=spider)
def process_response(self, request, response, spider):
self.stats.inc_value('downloader/response_count', spider=spider)
self.stats.inc_value('downloader/response_status_count/%s' % response.status, spider=spider)
reslen = len(response_httprepr(response))
self.stats.inc_value('downloader/response_bytes', reslen, spider=spider)
return response
def process_exception(self, request, exception, spider):
ex_class = "%s.%s" % (exception.__class__.__module__, exception.__class__.__name__)
self.stats.inc_value('downloader/exception_count', spider=spider)
self.stats.inc_value('downloader/exception_type_count/%s' % ex_class, spider=spider)
在from_crawler
类方法中,究竟是什么,它被传入?
答案 0 :(得分:1)
首先,DownloaderStats(object)
并不意味着DownloaderStats正在传递一个对象,这意味着DownloaderStats类扩展了object
类。
在您的类方法中,cls
是被调用的类,在本例中为DownloaderStats
。因此代码cls(crawler.stats)
可以被认为是DownloaderStats(crawler.stats)
,它实例化了DownloaderStats类的对象。在Python中实例化对象导致他们的 init 方法被调用,因此crawler.stats
的值被分配给stats
方法的__init__
参数,然后获取分配给self.stats
。