Unable to import items in scrapy

后端 未结 4 1211
广开言路
广开言路 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:03

    I also had this several times while working with scrapy. You could add at the beginning of your Python modules this line:

    from __future__ import absolute_import
    

    More info here:

    • http://www.python.org/dev/peps/pep-0328/#rationale-for-absolute-imports
    • http://pythonquirks.blogspot.ru/2010/07/absolutely-relative-import.html

提交回复
热议问题