uwsgi cannot find Flask application: (callable not found or import error) uwsgi cannot find Flask application: (callable not found or import error) flask flask

uwsgi cannot find Flask application: (callable not found or import error)


Okay, so after a few hours of exploring this mess, I figured it out!

When running uwsgi, app must be conflicting with some other internal module. I've changed my initialization to be application = Flask(__name__) and did from app import application. Now my application is being loaded correctly.