sanic/examples/modify_header_example.py

31 lines
562 B
Python
Raw Normal View History

2017-04-11 21:34:55 +01:00
"""
Modify header or status in response
"""
from sanic import Sanic, response
2017-04-11 21:34:55 +01:00
app = Sanic("Example")
@app.route("/")
2017-04-11 21:34:55 +01:00
def handle_request(request):
return response.json(
{"message": "Hello world!"},
headers={"X-Served-By": "sanic"},
status=200,
2017-04-11 21:34:55 +01:00
)
@app.route("/unauthorized")
2017-04-11 21:34:55 +01:00
def handle_request(request):
return response.json(
{"message": "You are not authorized"},
headers={"X-Served-By": "sanic"},
status=404,
2017-04-11 21:34:55 +01:00
)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=True)