ToastFreeware
/
chrisu
/
seepark.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Hello world flask project.
[chrisu/seepark.git]
/
web
/
seepark_web.py
1
from flask import Flask, render_template
2
app = Flask(__name__)
3
4
@app.route("/")
5
def hello():
6
return render_template('seepark_web.html')
7