我知道它被问了几百次。但是,我仍然无法弄清楚我的情况。如果我创建最小的例子,我的文件夹结构看起来像这样:
.
├── Project_L
│ ├── __init__.py
│ ├── items.py
│ ├── middlewares.py
│ ├── pipelines.py
│ ├── settings.py
│ └── spiders
│ ├── First_sp.py
│ └── __init__.py
└── scrapy.cfg
items.py:
import scrapy
class ProjectLItem(scrapy.Item):
name = scrapy.Field()
而且只有一条进口线
from Project_L.items import ProjectLItem
我正在
'No module named Project_L.items'
好的,我想。这是我的双手。我已经下载了Dimitrios Kouzis-Loukas" Learning Scrapy"来自github的书籍样本。吐出相同的错误。