Update scrapy command line doc with additional scrapy parse options

This commit is contained in:
Breno Colom 2014-02-24 18:10:51 -05:00
parent 822adb1d5f
commit 551c1c5eae
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 (ie. 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)