I have my flask_app.py located at mysite/flask_app.py, but when I try to run my web app I get an ImportError saying:
ImportError: No module named 'flask_app'
2017-01-18 06:24:31,417 : File "/var/www/jss367_pythonanywhere_com_wsgi.py", line 16, in <module>
I ran the wsgi file directly and it opens a python console as I expected. Then I tried to import flask_app and it works exactly as expected as well. But I've tried running the web app over and over and get the same error. I even deleted flask_app.py and reset it to the most basic components. Is ther anything else I should try?