import logging from aiogram import Bot, Dispatcher, executor, types from aiogram.types import ReplyKeyboardRemove, ReplyKeyboardMarkup, KeyboardButton API_TOKEN = '5724991559:AAEuLvpLsgP6LHRGMSyFtQLlR5qPQUO4b_w' logging.basicConfig(level=logging.DEBUG) # Initialize bot and dispatcher bot = Bot(token=API_TOKEN) dp = Dispatcher(bot) # @dp.message_handler(commands=['start', 'help']) # async def send_welcome(message: types.Message): # await message.reply("Дарова пидорас!") @dp.message_handler(comands=['start']) async def welcome(message: types,Message): await message.message('Здравсвуйте! Выберите нужное действие') # далее нужно как-то выставить две кнопки await message.answer(ReplyKeyboardMarkup (keyboard=[ KeyboardButton(text='тык') keyboardButton(text='хуяндок')] resize_keyboard=True #какую-то хуйню написал if __name__ == '__main__': executor.start_polling(dp, skip_updates=True) executor.start_polling(dp, skip_updates=True)