summaryrefslogtreecommitdiff
path: root/wk9/lect/hello/app.py
blob: 13685866ab48cd82b3dd387cd55284066087718b (plain)
1
2
3
4
5
6
7
8
from flask import Flask, render_template, request

app = Flask(__name__)

@app.route("/")
def index():
    name = request.args.get("name", "world")
    return render_template("index.html", name=name)