**
Code: Select all
import asyncio
from aiogram import Bot, Dispatcher
async def main():
bot = Bot(token='')
dp = Dispatcher
await dp.start_polling(bot)
if __name__ == "__main__":
asyncio.run(main())
Code: Select all
import asyncio
from aiogram import Bot, Dispatcher
async def main():
bot = Bot(token='')
dp = Dispatcher
await dp.start_polling(bot)
if __name__ == "__main__":
asyncio.run(main())