class documentation

class ScrapyCommand:

Known subclasses: scrapy.commands.BaseRunSpiderCommand, scrapy.commands.bench.Command, scrapy.commands.check.Command, scrapy.commands.edit.Command, scrapy.commands.fetch.Command, scrapy.commands.genspider.Command, scrapy.commands.list.Command, scrapy.commands.settings.Command, scrapy.commands.shell.Command, scrapy.commands.startproject.Command, scrapy.commands.version.Command

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method add​_options Populate option parse with options available for this command
Method help An extensive help for the command. It will be shown when using the "help" command. It can contain newlines, since no post-formatting will be applied to its contents.
Method long​_desc A long description of the command. Return short description when not available. It cannot contain newlines, since contents will be formatted by optparser which removes newlines and wraps text.
Method process​_options Undocumented
Method run Entry point for running commands
Method set​_crawler Undocumented
Method short​_desc A short description of the command
Method syntax Command syntax (preferably one-line). Do not include command name.
Class Variable crawler​_process Undocumented
Class Variable default​_settings Undocumented
Class Variable exitcode Undocumented
Class Variable requires​_project Undocumented
Instance Variable ​_crawler Undocumented
Instance Variable settings Undocumented
def __init__(self):

Undocumented

def help(self):
An extensive help for the command. It will be shown when using the "help" command. It can contain newlines, since no post-formatting will be applied to its contents.
def long_desc(self):
A long description of the command. Return short description when not available. It cannot contain newlines, since contents will be formatted by optparser which removes newlines and wraps text.
def process_options(self, args, opts):

Undocumented

def set_crawler(self, crawler):

Undocumented

crawler_process =

Undocumented

_crawler =

Undocumented

settings =

Undocumented