有没有办法在Python中访问父模块

时间:2011-03-12 23:11:14

标签: python module parent

我需要知道是否有办法从子模块访问父模块。如果我导入子模块:

from subprocess import types

我有types - 是否有一些Python魔法可以从subprocess访问types模块?类().__class__.__bases__[0].__subclasses__()类似于此类。

4 个答案:

答案 0 :(得分:6)

如果您访问过模块,通常可以从sys.modules字典中访问该模块。 Python没有使用名称保留“父指针”,特别是因为这种关系不是一对一的。例如,使用您的示例:

>>> from subprocess import types
>>> types
<module 'types' from '/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.pyc'>
>>> import sys
>>> sys.modules['subprocess']
<module 'subprocess' from '/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.pyc'>

如果您注意到types模块中subprocess的存在只是其中import types语句的工件。如果您需要该模块,则只需import types

事实上,subprocess的未来版本可能不再导入types,您的代码将会中断。您只应导入模块的__all__列表中显示的名称;将其他名称视为实现细节。

所以,例如:

>>> import subprocess
>>> dir(subprocess)
['CalledProcessError', 'MAXFD', 'PIPE', 'Popen', 'STDOUT', '_PIPE_BUF', '__all__', '__builtins__', '__doc__',
 '__file__', '__name__', '__package__', '_active', '_cleanup', '_demo_posix', '_demo_windows', '_eintr_retry_call',
 '_has_poll', 'call', 'check_call', 'check_output', 'errno', 'fcntl', 'gc', 'list2cmdline', 'mswindows', 'os',
 'pickle', 'select', 'signal', 'sys', 'traceback', 'types']
>>> subprocess.__all__
['Popen', 'PIPE', 'STDOUT', 'call', 'check_call', 'check_output', 'CalledProcessError']

您可以看到subprocess中显示的大多数名称只是其导入的其他顶级模块。

答案 1 :(得分:4)

对于子孙后代,我也遇到了这个并提出了一个班轮:

import sys
parent_module = sys.modules['.'.join(__name__.split('.')[:-1]) or '__main__']

or '__main__'部分是为了防止您直接加载文件,它将自行返回。

答案 2 :(得分:0)

full_module_name = module.__name__
parent, _, sub = full_module_name.rpartition('.')
if parent:
    parent = import(parent, fromlist='dummy')

答案 3 :(得分:-1)

我假设你已经不在子进程模块中了,你可以做到

import somemodule
children = dir(somemodule)

然后您可以使用inspect模块检查子进程的子进程: http://docs.python.org/library/inspect.html

也许getmodule方法对你有用吗? http://docs.python.org/library/inspect.html#inspect.getmodule

import inspect
parent_module = inspect.getmodule(somefunction)
children = dir(parent_module)
package = parent_module.__package__

在我的机器上__package__为'types'返回空,但对我自己的模块更有用,因为它确实将父模块作为字符串返回