Scrapy蜘蛛未找到错误

6 浏览
0 Comments

Scrapy蜘蛛未找到错误

这是使用Python 2.7的Windows 7操作系统。

我在一个名为caps的目录中有一个Scrapy项目(这是scrapy.cfg所在的地方)。

我的爬虫位于caps\caps\spiders\campSpider.py中。

我进入Scrapy项目并尝试运行scrapy crawl campSpider -o items.json -t json

我收到一个找不到爬虫的错误。类名为campSpider

...
    spider = self.crawler.spiders.create(spname, **opts.spargs)
  File "c:\Python27\lib\site-packages\scrapy-0.14.0.2841-py2.7-win32.egg\scrapy\spidermanager.py", l
ine 43, in create
    raise KeyError("Spider not found: %s" % spider_name)
KeyError: 'Spider not found: campSpider'

我是否缺少某个配置项?

0