1,python3程序,如何从不同目录导入模块
2,如何获取scrapy的路径信息
3,从RUGplatform.custom_module.rule_module导入CrawlRule,ParserRule
ImportError:没有名为“ RUGplatform”的模块
答案 0 :(得分:0)
我的解决方案:
import os
import sys
sys.path.append('/'.join(os.path.split(os.path.realpath(__file__))[0].split('/')[0:-2]))<br>
from RUGplatform.custom_module.rule_module import CrawlRule, ParserRule
有没有更优雅的解决方案?例如,scrapy框架的解决方案