Search code examples
pythonhtmlpython-3.xflaskresponse

Flask and HTML: Redirect json response to be displayed at the bottom of the same page instead showing response on a separate page


Super new to web development.. I'm deploying an sklearn Machine Learning model using Flask.

I'm able to correctly return the response prediction as a JSON, but it is showing up on a separate page.. I would like to alter my HTML and Flask app.py in such a way that, the prediction response appears in a newly created container element right at the bottom of the form in HTML

Here is my index.html

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href= "{{ url_for('static',filename='css/style.css') }}">


</head>
<body>
<div class = 'intro'>
  This is a simple website that hosts a Machine Learning model trained using <i>sklearn</i> to predict one of three authors:
  <b>HP Lovecraft</b>, <b>Edgar Allan Poe</b> and <b>Mary Shelley</b>. Simply enter a passage of one of those three authors and you will get a prediction.


</div>

<div class="authorimage">
  <div class="row">
  <div class="column">
    <h2>Mary Shelley</h2>
    <p><img src = "{{ url_for('static',filename='img/mary.jpeg') }}"></p>
  </div>
  <div class="column">
    <h2>H.P Lovecraft</h2>

    <p><img src = "{{ url_for('static',filename='img/lovecraft.jpeg') }}"></p>
  </div>
  <div class="column">
    <h2>Edgar Allan Poe</h2>
    <p><img src = "{{ url_for('static',filename='img/eap.jpeg') }}"></p>
  </div>
</div>


</div>


<div class = 'input'>
  <form action="/api" method="POST">
    <textarea name = "passage_input" cols="35" wrap="soft"></textarea>
    <input type="submit">
</form>
</div>


<div class = "prediction">
Not sure how to collect the response from app.py into a box here..
</div>

</body>
</html>

Here is my app.py

import numpy as np
import pandas as pd
from flask import Flask, render_template, abort, jsonify, request
import pickle
from vectorspace import VectorSpace
import json

with open('/Users/abhishekbabuji/Desktop/spooky_author_model.pkl', 'rb') as fid:
     pkl_model_loaded = pickle.load(fid)


app = Flask(__name__, static_url_path='')

@app.route('/')
def input_form():
  return render_template('/index.html')


@app.route('/api', methods = ['POST'])
def predict():
  text_input = request.form['passage_input']
  return parse(pd.Series([text_input]))

def parse(input_passage):

    reduction_type = 'lemmatize'
    trans_input_passage = VectorSpace(input_passage, reduction = reduction_type).apply_reduction()


    return json.dumps(pkl_model_loaded.predict(trans_input_passage)[0])




if __name__ == '__main__':
  app.run(port = 9000, debug = True)

Solution

  • You can use for in jinja to parse your json result in html like:

    {% for key, value in results %}        
      <span>{{key}} : {{value}}</span>
    {% endfor %}
    

    and in your flask app :

    return render_template("index.html", results = your result)