1、KeyError: ‘Spider not found: BDS‘
原因:settings.py中缺少了几项与spider名字配置相关的项:
BOT_NAME = ‘BDS‘ SPIDER_MODULES = [‘County.spiders‘] NEWSPIDER_MODULE = ‘County.spiders‘
2、 ValueError(f‘Missing scheme in request url: {self._url}‘)
原因:路径没有使用正确,比如忘记加前缀https://
原文:https://www.cnblogs.com/ShineLeBlog/p/14633204.html