2021-12-23 22:30:27 +00:00
|
|
|
from sanic import Sanic, response
|
2017-04-06 20:42:05 +01:00
|
|
|
|
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
app = Sanic("Example")
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/")
|
2017-04-06 20:42:05 +01:00
|
|
|
def handle_request(request):
|
2021-12-23 22:30:27 +00:00
|
|
|
return response.redirect("/redirect")
|
2017-06-01 19:53:05 +01:00
|
|
|
|
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
@app.route("/redirect")
|
2017-04-06 20:42:05 +01:00
|
|
|
async def test(request):
|
|
|
|
return response.json({"Redirected": True})
|
|
|
|
|
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
app.run(host="0.0.0.0", port=8000)
|