Files
sanic/examples/amending_request_object.py
2021-12-24 00:30:27 +02:00

30 lines
555 B
Python

from random import randint
from sanic import Sanic
from sanic.response import text
app = Sanic("Example")
@app.middleware("request")
def append_request(request):
request.ctx.num = randint(0, 100)
@app.get("/pop")
def pop_handler(request):
return text(request.ctx.num)
@app.get("/key_exist")
def key_exist_handler(request):
# Check the key is exist or not
if hasattr(request.ctx, "num"):
return text("num exist in request")
return text("num does not exist in request")
app.run(host="0.0.0.0", port=8000, debug=True)