可能重复:
如何从 python 中的测试模块导入 src
我想调用位于另一个目录中的另一个模块。我的代码结构是
flask_beginner/
app.py
models/
__init__.py
user.py
tests/
__init__.py
user_test.py
我想从 user_test.py 调用用户模块。我的 user_test.py 是这样的..
import models.user
....
但它会引发错误,即没有名为 models.user 的模块
你有什么主意吗?我的 Python 版本是 2.7.2。(带有 virtualenv)
提前致谢。