import asyncio from pytgcalls import idle from driver.veez import call_py, bot async def start_bot(): print("[INFO]: STARTING BOT CLIENT") await bot.start() print("[INFO]: STARTING PYTGCALLS CLIENT") await call_py.start() await idle() print("[INFO]: STOPPING BOT & USERBOT") await bot.stop() loop = asyncio.get_event_loop() loop.run_until_complete(start_bot())