I followed this guide.
Most of my files are almost identical to the guide (except FlaskApp is changed to the project name HopUpon). except for __init__.py
which looks like this:
from flask import *
import json
#import airport_finder2
#import pandas as pd
app = Flask(__name__)
@app.route('/')
def index():
return render_template('quicksearch.html')
if __name__ == '__main__':
app.run(debug=True)
This file works but when I uncomment airport_finder2 or pandas as pd I am unable to reach the website. It endlessly searches.
some background on airport_finder2:
this is a python file which searches through two csv files and returns a result.
These files are located in the same folder as __init__.py
- /var/www/HopUpon/HopUpon
but I would like to move them to /var/www/HopUpon/HopUpon/static once I can get them working.
pandas: I have pip installed pandas on to the virtual environment.
wsgi: I have tried to create a log but I get an internal server error when I do.
import logging
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s %(levelname)-8s %(message)s',
datefmt='%a, %d %b %Y %H:%M:%S',
filename='/temp/myapp.log',
filemode='w')
logging.debug('A debug message')
So I have no error logs to show. Apologies. I know it would make it much easer.
My questions: Why are these imports giving errors? What errors are they giving? How do I run my Flask app in debug mode on digitalocean?
Any help will be greatly appreciated.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
hey I figured out my errors.
__init__.py
with:I hope this helps others.
@dougcreighton
To run Flask in debug mode, from the CLI, run:
and then
Keep in mind, once you log out of the current session, you’ll need to run the same export again as it’s only valid for the current session (i.e. you’ll need to run that each time you login).
As for the import, the only details I can find on
airport_finder
point toairport_finder
, as in, without the2
, so have you tried to import usingairport_finder
instead ofairport_finder2
?