My Flask project is structured as follows:
my_project │ ├── app │ ├── __init__.py │ ├── api │ ├── static │ └── templates ├── config.py └── run.py
I was facing same issue for below line in my app,
import app.main.constant.constants as Constants
but then I restructure above command to below, and It worked for me.
from app.main.constant import constants as Constants