Scrapy配置自定义scrapy命令

Posted jintian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scrapy配置自定义scrapy命令相关的知识,希望对你有一定的参考价值。

写的类要在settings.py中添加配置注册

scrapy --help

 

 在spiders同级创建任意目录,如:commands

在其中创建 crawlall.py 文件 (此处文件名就是自定义的命令)

在settings.py 中添加配置 COMMANDS_MODULE = ‘项目名称.目录名称‘

在项目目录执行命令:scrapy crawlall  

 

技术图片
from scrapy.commands import ScrapyCommand
from scrapy.utils.project import get_project_settings


class Command(ScrapyCommand):

    requires_project = True

    def syntax(self):
        return [options]

    def short_desc(self):
        return Runs all of the spiders

    def run(self, args, opts):
        # 找到所有的爬虫名称
        print(type(self.crawler_process))
        from scrapy.crawler import CrawlerProcess
        # 1. 执行CrawlerProcess构造方法
        # 2. CrawlerProcess对象(含有配置文件)的spiders
            # 2.1,为每个爬虫创建一个Crawler
            # 2.2,执行 d = Crawler.crawl(...)   # ************************ #
            #           d.addBoth(_done)
            # 2.3, CrawlerProcess对象._active = {d,}

        # 3. dd = defer.DeferredList(self._active)
        #    dd.addBoth(self._stop_reactor)  # self._stop_reactor ==> reactor.stop()

        #    reactor.run




        # 获取当前所有爬虫的名称
        spider_list = self.crawler_process.spiders.list()
        # spider_list = ["chouti",‘cnblogs‘]
        for name in spider_list:
            self.crawler_process.crawl(name, **opts.__dict__)
        self.crawler_process.start()
crawlall.py

技术图片技术图片技术图片技术图片技术图片技术图片技术图片技术图片技术图片

以上是关于Scrapy配置自定义scrapy命令的主要内容,如果未能解决你的问题,请参考以下文章

Scrapy-自定制scrapy命令

爬虫框架之scrapy

Scrapy中怎么传递用户自定义的参数到爬虫文件所在的类中呢?

scrapy主动退出爬虫的代码片段(python3)

scrapy之自定制命令

scrapy框架自定制命令