From 551c1c5eaefcecbd5afc2bb537311fc33e8840e2 Mon Sep 17 00:00:00 2001 From: Breno Colom Date: Mon, 24 Feb 2014 18:10:51 -0500 Subject: [PATCH] Update scrapy command line doc with additional scrapy parse options --- docs/topics/commands.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/topics/commands.rst b/docs/topics/commands.rst index 933905a4d8f..f72c04a27a4 100644 --- a/docs/topics/commands.rst +++ b/docs/topics/commands.rst @@ -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)