Python: collection of Sample Codes

# use flask to build website

# initial

from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')

def home():

    return render_template("index.html") #index.html needs to be in the folder 'templates'

if __name__ == "__main__":

    app.run(debug=True)


0 Comments