How I call an async function without await?
Solution 1:
One way would be to use create_task
function:
import asyncio
async def handler_message(request):
...
loop = asyncio.get_event_loop()
loop.create_task(perform_message(x,y,z))
...