Python __import__ 在同一文件夹中导入失败

3

我有这样的目录结构:

|- project
  |- commands.py
  |- Modules
  | |- __init__.py
  | |- base.py
  | \- build.py
  \- etc....

我在__init__.py中有以下代码:

commands = []
hooks = []

def load_modules():
    """ dynamically loads commands from the /modules subdirectory """
    path = "\\".join(os.path.abspath(__file__).split("\\")[:-1])
    modules = [f for f in os.listdir(path) if f.endswith(".py") and f != "__init__.py"]
    print modules
    for file in modules:
        try:
            module = __import__(file.split(".")[0])
            print module
            for obj_name in dir(module):
                try:
                    potential_class = getattr(module, obj_name)
                    if isinstance(potential_class, Command):
                        #init command instance and place in list
                        commands.append(potential_class(serverprops))
                    if isinstance(potential_class, Hook):
                        hooks.append(potential_class(serverprops))
                except:
                    pass
        except ImportError as e:
            print "!! Could not load %s: %s" % (file, e)
    print commands
    print hooks

我试图让__init__.py将适当的命令和钩子加载到给定的列表中,但是我总是在module = __import__(file.split(".")[0])处遇到ImportError错误,即使__init__.py和base.py等文件都在同一个文件夹中。我已经验证了任何模块文件中没有需要__init__.py中的任何内容的情况,所以我真的不知道该怎么办。

__import__有一些需要注意的琐碎细节,特别是与fromlist有关的部分。尝试搜索一下,看看能否弄清楚。 - Chris Morgan
路径 = os.path.dirname(os.path.abspath(file))(更正确,也跨平台) - Chris Morgan
load_modules() 函数从哪里和如何调用? - martineau
load_modules 在 init 期间从 commands.py 调用。 - Thomas
1个回答

2
您所缺少的是在系统路径上安装模块。请添加:
import sys
sys.path.append(path)

在你的path = ...行后,你应该设置好了。以下是我的测试脚本:
import os, os.path, sys

print '\n'.join(sys.path) + '\n' * 3

commands = []
hooks = []

def load_modules():
    """ dynamically loads commands from the /modules subdirectory """
    path = os.path.dirname(os.path.abspath(__file__))

    print "In path:", path in sys.path
    sys.path.append(path)

    modules = [f for f in os.listdir(path) if f.endswith(".py") and f != "__init__.py"]
    print modules
    for file in modules:
        try:
            modname = file.split(".")[0]
            module = __import__(modname)
            for obj_name in dir(module):
                print '%s.%s' % (modname, obj_name )
        except ImportError as e:
            print "!! Could not load %s: %s" % (file, e)
    print commands


load_modules()

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接