2
は、私は次のディレクトリ構造を持っている:スパイダーをScrapyのネストされたディレクトリに整理するにはどうすればよいですか?
my_project/
__init__.py
spiders/
__init__.py
my_spider.py
other_spider.py
pipeines.py
# other files
今私はmy_project
ディレクトリにあるとscrapy crawl my_spider
を使用して、私のクロールを開始することができます。
私は何を達成したいことは、この更新された構造でscrapy crawl my_spider
を実行できるようにすることです:
my_project/
__init__.py
spiders/
__init__.py
subtopic1/
__init__.py # <-- I get the same error whether this is present or not
my_spider.py
subtopicx/
other_spider.py
pipeines.py
# other files
しかし、今、私はこのエラーを取得する:
KeyError: 'Spider not found: my_spider'
適切な方法は何ですかScrapyスパイダーをディレクトリに整理するには?