I am working on a medium size flask application. I have two main modules, one to creat databases lests call it schema.py and one to provide views, views.py. I am using the suggested structure in http://flask.pocoo.org/docs/patterns/packages/
I am defining both app and db=SQLAlchemy(app) in __init__.py. I get to the circular import issue here! The following is my file imports:
schema.py:
from myapp import db
views.py:
from myapp import app,db
import myapp.schema
__init__.py
import myapp.views
and therefore, I will receive the circular imports error when I am running the schema.py. How should I solve this? I would appreciate any suggestions.