We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
for python>=3.10:
import asyncio from khl import Bot bot1 = Bot('token') bot2 = Bot('token') bot3 = Bot('token') async def main(): await asyncio.gather(bot1.start(), bot2.start(), bot3.start()) asyncio.run(main())
for python<3.10:
import asyncio from khl import Bot bot1 = Bot('token') bot2 = Bot('token') bot3 = Bot('token') asyncio.get_event_loop().run_until_complete( asyncio.gather(bot1.start(), bot2.start(), bot3.start()) )