[7323fc]: / basics.py

Download this file

13 lines (7 with data), 191 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/home')
def home():
return render_template('home.html')
if __name__ == "__main__":
app.run(debug=True)