Inverse-Rezeptsuche/run.py

10 lines
158 B
Python
Raw Normal View History

2020-04-10 14:14:34 +00:00
from application import app
2020-04-20 15:54:58 +00:00
import nltk
nltk.download('stopwords')
nltk.download('punkt')
2020-04-10 14:14:34 +00:00
2020-04-18 14:35:21 +00:00
app.run(host="0.0.0.0", port='5001', debug=True, threaded=True)
2020-04-10 14:14:34 +00:00