Unable to import items in scrapy

后端 未结 4 1177
广开言路
广开言路 2021-01-06 05:27

I have a very basic spider, following the instructions in the getting started guide, but for some reason, trying to import my items into my spider returns an error. Spider a

4条回答
  •  星月不相逢
    2021-01-06 06:09

    you are importing a field ,you must import a class from items.py like from myproject.items import class_name.

提交回复
热议问题