2021-11-23 21:00:25 +00:00
|
|
|
from sanic import Sanic, response
|
|
|
|
|
2017-04-12 07:20:35 +01:00
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
app = Sanic("Example")
|
2017-04-12 07:20:35 +01:00
|
|
|
|
2017-06-01 19:53:05 +01:00
|
|
|
|
2021-11-23 21:00:25 +00:00
|
|
|
@app.route("/")
|
2017-04-12 07:20:35 +01:00
|
|
|
async def index(request):
|
|
|
|
# generate a URL for the endpoint `post_handler`
|
2021-11-23 21:00:25 +00:00
|
|
|
url = app.url_for("post_handler", post_id=5)
|
2017-04-12 07:20:35 +01:00
|
|
|
# the URL is `/posts/5`, redirect to it
|
|
|
|
return response.redirect(url)
|
|
|
|
|
2017-06-01 19:53:05 +01:00
|
|
|
|
2021-11-23 21:00:25 +00:00
|
|
|
@app.route("/posts/<post_id>")
|
2017-04-12 07:20:35 +01:00
|
|
|
async def post_handler(request, post_id):
|
2021-11-23 21:00:25 +00:00
|
|
|
return response.text("Post - {}".format(post_id))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-06-01 19:53:05 +01:00
|
|
|
app.run(host="0.0.0.0", port=8000, debug=True)
|