ЕП
Size: a a a
ЕП
ЕП
AR
Е
pip install -U aiogram
AR
Е
AR
AR
Е
D
R
D
D
R
D
R
D
D
ЕР
R
# -*- coding: utf-8 -*-
from aiogram import Bot, Dispatcher, executor, types
bot = Bot(token="TOKEN")
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def cmd_start(message):
await message.answer("text")
executor.start_polling(dp, skip_updates=True)