Flask ImportError: cannot import name app
Look at the source code
You'll see in site/__init__.py
from .views import app
This declares app
in the site
module, therefore allowing you to use this at the run module
from site import app
Otherwise, you need
from site.views import app
app
is defined within site.views
, so you need to import it from there.
from site.views import app