-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
51 lines (31 loc) · 1.17 KB
/
app.py
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
50
51
from api import API
from middleware import Middleware
app = API()
def custom_exception_handler(request, response, exception_cls):
response.text = "Oops! Something went wrong."
app.add_exception_handler(custom_exception_handler)
class SimpleCustomMiddleware(Middleware):
def process_request(self, req):
print("Processing request", req.url)
def process_response(self, req, res):
print("Processing response", req.url)
app.add_middleware(SimpleCustomMiddleware)
@app.route("/exc")
def exception_throwing_handler(request, response):
raise AssertionError("This handler should not be user")
@app.route("/home")
def home(request, response):
response.text = "Hello from the HOME page"
@app.route("/about")
def about(request, response):
response.text = "Hello from the ABOUT page"
@app.route("/hello/{name}")
def greeting(request, response, name):
response.text = f"Hello, {name}"
@app.route("/book")
class BooksResource:
def get(self, req, resp):
resp.text = "Books Page"
@app.route("/template")
def template_handler(req, resp):
resp.body = app.template("index.html", context={"name": "dmytzo", "title": "python"}).encode()