Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

flask return html

from flask import Flask, render_template

@app.route('/my_page')
def returnHTML():
    return render_template('my_page.html')
Comment

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)
Comment

PREVIOUS NEXT
Code Example
Python :: python-binance 
Python :: argparse multiple arguments as list 
Python :: how to receive user input in python 
Python :: encoding read_csv 
Python :: get all files within multiple directories python 
Python :: how to make a never ending loop in python 
Python :: python better while loop that count up 
Python :: select columns from dataframe pandas 
Python :: delete index in df 
Python :: what is a module computer science 
Python :: how to insert sound in python 
Python :: foreign key constraint failed django 
Python :: regex in python to obtain only the string in python 
Python :: json load python 
Python :: read text from a pdffile python 
Python :: download files requests python 
Python :: how to take second largest value in pandas 
Python :: if you assign the result a void function to a variable in python, you get: 
Python :: python copy all files in a folder to nother folder 
Python :: python read excel sheet name 
Python :: python- number of row in a dataframe 
Python :: how to reverse array in ruby 
Python :: colab kaggle dataset 
Python :: python list subdirectories 
Python :: openpyxl change sheet name 
Python :: web server python 
Python :: -bash: /usr/local/bin/python3: no such file or directory 
Python :: all possible combinations of parameters 
Python :: python tkinter treeview get selected item 
Python :: python speech recognition module 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =