Merge pull request #613 from breno/master

Update scrapy command line doc with additional scrapy parse options
This commit is contained in:
Pablo Hoffman 2014-03-07 10:35:58 -08:00
commit 0bc2cbaf09
1 changed files with 8 additions and 0 deletions

View File

@ -367,9 +367,15 @@ method passed with the ``--callback`` option, or ``parse`` if not given.
Supported options:
* ``--spider=SPIDER``: bypass spider autodetection and force use of specific spider
* ``--a NAME=VALUE``: set spider argument (may be repeated)
* ``--callback`` or ``-c``: spider method to use as callback for parsing the
response
* ``--pipelines``: process items through pipelines
* ``--rules`` or ``-r``: use :class:`~scrapy.contrib.spiders.CrawlSpider`
rules to discover the callback (i.e. spider method) to use for parsing the
response
@ -378,6 +384,8 @@ Supported options:
* ``--nolinks``: don't show extracted links
* ``--nocolour``: avoid using pygments to colorize the output
* ``--depth`` or ``-d``: depth level for which the requests should be followed
recursively (default: 1)