mirror of https://github.com/scrapy/scrapy.git
Merge pull request #613 from breno/master
Update scrapy command line doc with additional scrapy parse options
This commit is contained in:
commit
0bc2cbaf09
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue