Python asyncio.run ()

async def main():
    await asyncio.sleep(1)
    print('hello')

asyncio.run(main())
Ciprian Galbeaza