Diff of /basics.py [000000] .. [978f77]

Switch to unified view

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