mirror of https://github.com/scrapy/scrapy.git
add note about enclosing urls with quotes when running from command-line. closes GH-384
This commit is contained in:
parent
bb8cb41777
commit
b1d1a36a1e
|
|
@ -239,7 +239,13 @@ installed on your system.
|
|||
|
||||
To start a shell, you must go to the project's top level directory and run::
|
||||
|
||||
scrapy shell http://www.dmoz.org/Computers/Programming/Languages/Python/Books/
|
||||
scrapy shell "http://www.dmoz.org/Computers/Programming/Languages/Python/Books/"
|
||||
|
||||
.. note::
|
||||
|
||||
Remember to always enclose urls with quotes when running Scrapy shell from
|
||||
command-line, otherwise urls containing arguments (ie. ``&`` character)
|
||||
will not work.
|
||||
|
||||
This is what the shell looks like::
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue