sanic/examples/add_task_sanic.py
Adam Hopkins 8c07e388cd
LTS v21.12 Deprecations (#2306)
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
2021-12-24 00:30:27 +02:00

20 lines
341 B
Python

# -*- coding: utf-8 -*-
import asyncio
from sanic import Sanic
app = Sanic("Example")
async def notify_server_started_after_five_seconds():
await asyncio.sleep(5)
print("Server successfully started!")
app.add_task(notify_server_started_after_five_seconds())
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)