Python-从相对路径导入模块
给定相对路径,如何导入Python模块?
例如,如果dirFoo
包含Foo.py
和dirBar
,和dirBar
包含Bar.py
,我怎么导入Bar.py
到Foo.py
?
这是一个视觉表示:
dirFoo\
Foo.py
dirBar\
Bar.py
Foo
希望包含Bar
,但是重组文件夹层次结构不是一种选择。
-
假设你的两个目录都是真实的Python包(
__init__.py
文件中确实有文件),那么这是一个相对于脚本位置包含模块的安全解决方案。我假设你想这样做,因为你需要在脚本中包括一组模块。我在多个产品的生产环境中使用了此功能,并在许多特殊情况下工作,例如:从另一个目录调用或使用python执行的脚本执行,而不是打开新的解释器。
import os, sys, inspect # realpath() will make your script run, even if you symlink it :) cmd_folder = os.path.realpath(os.path.abspath(os.path.split(inspect.getfile( inspect.currentframe() ))[0])) if cmd_folder not in sys.path: sys.path.insert(0, cmd_folder) # Use this if you want to include modules from a subfolder cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],"subfolder"))) if cmd_subfolder not in sys.path: sys.path.insert(0, cmd_subfolder) # Info: # cmd_folder = os.path.dirname(os.path.abspath(__file__)) # DO NOT USE __file__ !!! # __file__ fails if the script is called in different ways on Windows. # __file__ fails if someone does os.chdir() before. # sys.argv[0] also fails, because it doesn't not always contains the path.
另外,这种方法确实可以让你强制Python使用模块,而不是系统上安装的模块。
注意!我真的不知道当前模块在egg文件中时发生了什么。它也可能失败。
-
你也可以将子目录添加到Python路径中,以便将其作为普通脚本导入。
import sys sys.path.insert(0, <path to dirFoo>) import Bar
-
确保dirBar包含
__init__.py
文件-这将使目录进入Python包。