>>> from foo.bar import app
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named foo.bar
私のディレクトリ構造:
In /foo:
__init__.py
bar.py
In /foo/tests:
__init__.py
testing.py
/foo/tests/testing.py
からアプリをインポートする必要があり/foo/bar.py
ます。ImportError
tests.pyファイルを実行するとifが表示されます。
確認sys.path
したところ、/foo
と/foo/tests
フォルダが含まれています。