forked from microsoft/python-sample-vscode-flask-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviews.py
More file actions
49 lines (42 loc) · 919 Bytes
/
views.py
File metadata and controls
49 lines (42 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
hello_app: module docstring goes here
"""
# pylint: disable=unused-import
from datetime import datetime
from flask import Flask, render_template
from . import app
@app.route("/")
def home():
"""
Function docstring goes here
"""
return render_template("home.html")
@app.route("/about/")
def about():
"""
Function docstring goes here
"""
return render_template("about.html")
@app.route("/contact/")
def contact():
"""
Function docstring goes here
"""
return render_template("contact.html")
@app.route("/hello/")
@app.route("/hello/<name>")
def hello_there(name = None):
"""
Function docstring goes here
"""
return render_template(
"hello_there.html",
name=name,
date=datetime.now()
)
@app.route("/api/data")
def get_data():
"""
Function docstring goes here
"""
return app.send_static_file("data.json")