jRefactoring / app.py
gautam-shetty's picture
Initial commit
a5fb347
raw
history blame
474 Bytes
from flask import Flask, request, render_template
from predict import Predict
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict', methods=['POST'])
def predict():
feature_list = request.form.to_dict()
result = Predict().predict(feature_list['code'])
return render_template('index.html', prediction_text=result)
if __name__ == "__main__":
app.run(debug=True, use_reloader=False, port='8080')