I have a scrapy project that utilizes an item pipeline. I used the Scrapy "startproject" command to create my project so I think my folder structure is accurate.
I've tried moving the VersionSpider.py file to the outer directory, the same directory as the items module, and that works. However when I run the scrapy crawl command it can't find the spider since it's not in the proper directory.
File Structure: ~files
from CFBScraper.items import VersionItem
ModuleNotFoundError: No module named 'CFBScraper'