我想将我的命名空间从说 sandbox.auto.tools缩短到sandbox.tools。我该如何实现(自动是多余的)?我查看了其他消息,但并没有真正找到与我正在寻找的内容相似的内容。下面是我的目录结构。
sandbox\auto\tools\foo.py (contains a function display() as described below)
def display():
print "hello"
sandbox\test\bar.py
import sandbox.auto.tools as sandbox.tools (Error)
我知道我可以做到以下几点。
sandboox\test\bar.py
from sandbox.auto.tools import foo as tools
tools.display()
有什么建议/指针吗?