我有以下目录结构
foo/
__init__.py
settings.py
bar/
__init__.py
myfile.py
在 myfile.py 我有:导入设置
我收到以下错误:ImportError: No module named settings
,为什么?如何有效地settings
从myfile.py
从http://docs.python.org/2/tutorial/modules.html#intra-package-references:
from .. import settings
希望能帮助到你
这是另一种似乎更清楚的方法:
在foo.__init__.py
:
__all__ = ['settings', ..(all other modules at 'foo' level you want to show)...]
在myfile.py
:
# instead of "from .. import..."
from foo import settings
print settings.theThing