from aiogram import Bot, executor, Dispatcher, types
TOKEN_API = "токен"
bot = Bot(TOKEN_API)
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def start(message: types.Message):
await message.reply(text=markdown)
if __name__ == '__main__':
executor.start_polling()
pip install --force-reinstall -v "aiogram==2.23.1"
import aiogram
from aiogram import Bot, Dispatcher, executor, types