第十九章:模块和包-pkgutil:包工具-嵌套包

19.2.4 嵌套包
对于嵌套包,值需要修改*包的路径。

import pkgutil

__path__ = pkgutil.extend_path(__path__,__name__)
__path__.revese()

shallow和deep模块都包含一个函数来打印一条消息,指示消息来自己安装版本还是来自开发版本。使用以下测试程序测试这些新包。

import nested

import nested.shallow
print('nested.shallow:',nested.shallow.__file__)

print()
import nested.second.deep
print('nested.second.deep:',nested.second.deep.__file__)
nested.second.deep.func()
上一篇:PHP simpleXML如何检查嵌套子项是否存在


下一篇:elasticsearch中bucket_script聚合父级必须是多桶聚合