没有名为ESPN_Scraper.items的模块

时间:2016-09-29 00:14:26

标签: python-2.7

我正在学习python,并且正在尝试在这个github项目上运行代码。

https://github.com/rcfbanalysis/rcfbscraper

当我尝试运行如下命令时

python "C:\Python\rcfbscraper-master\ESPN_Scraper\ESPN_Scraper\spiders\espnSpider.py"

我收到错误No Module,名为ESPN_Scraper.items。 这是违规行

from ESPN_Scraper.items import GameItem

1 个答案:

答案 0 :(得分:0)

据我所知,ESPN_Scraper items.py不在您的sys路径中。一个快速解决此问题的方法是将ESPN_Scraper目录放在与espnspider.py文件相同的目录中。

查看文档https://docs.python.org/2/tutorial/modules.html第6.1.2节