I have a python flask app in below structure
Admin
|-app
| -__init__.py
|-wsgi.py
My wsgi.py contents is as follows
"Callable not found is the issue" (not the import error, i suspect). Change:
uwsgi --socket 127.0.0.1:8080 --protocol=http -w wsgi
into this
uwsgi --socket 127.0.0.1:8080 --protocol=http -w wsgi:app
or
uwsgi --socket 127.0.0.1:8080 --protocol=http --module wsgi --callable app
see here, search for 'flask deploy'.