python3和scrapy路径

时间:2018-07-12 02:50:14

标签: python-3.x scrapy

1,python3程序,如何从不同目录导入模块
2,如何获取scrapy的路径信息
enter image description here
3,从RUGplatform.custom_module.rule_module导入CrawlRule,ParserRule
   ImportError:没有名为“ RUGplatform”的模块

1 个答案:

答案 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框架的解决方案