Scrapy没有找到/回复URL

时间:2014-12-18 19:35:43

标签: python scrapy

我想从this URL.

开始抓几页

但蜘蛛没有跟随任何链接,当我在shell中尝试链接时,我收到以下消息:no event found.并且shell无法打开。

我是否应该在网址中找到一些令人讨厌的迹象?

所有人都非常感谢!

1 个答案:

答案 0 :(得分:2)

听起来您正在使用的网址上有一个感叹号! - 您看到的消息与Scrapy无关 - 它是来自shell的消息({{ 1}},命令行的解释器。)

如果使用bash,则会在交互式shell中的任何命令中发生,请参阅:

!

将URL包装在引号周围,它应该有效:

$ scrapy shell http://example.com/#!something
-bash: !something: event not found
$ echo http://example.com/#!something
-bash: !something: event not found

相关:

https://serverfault.com/questions/208265/what-is-bash-event-not-found