绝对路径导入中没有名为“ app”的模块

时间:2020-08-01 03:21:12

标签: python flask flask-restful

我正在研究一个具有以下结构的flask项目:

└──app
     ├── __init__.py 
     └── main 
          ├── __init__.py
          ├── service
          │   └── __init__.py (empty file)
          │   └── requests_service.py
          ├─── model
          │    └── __init__.py (empty file)
          │    └── models.py
          └─── util
               └── __init__.py (empty file)
               └── dto.py
└── requirements.txt
└── .gitignore

__init__.py内的应用程序文件夹中

from app.main.service.requests_service import RequestsManager

结果:

ModuleNotFoundError:没有名为“ app”的模块

在util文件夹内的dto.py

from app.main.model.models import News

结果:

ModuleNotFoundError:没有名为“ app”的模块

基本上,我尝试导入的每个模块都会产生相同的错误,如上所示。我觉得这应该很容易解决,但无法解决。有帮助吗?

0 个答案:

没有答案