Answers for "how to return an html file in flask"

0

how to return an html file in flask

from flask import Flask, render_template

app = Flask(__name__)
@app.route("/")
def index():
    return render_template('index.html') # You have to save the html files
                                         # inside of a 'templates' folder.
    
app.run(debug=True)
Posted by: Guest on September-29-2021

Code answers related to "how to return an html file in flask"

Python Answers by Framework

Browse Popular Code Answers by Language