python_bot_v2/bot.py

33 lines
1.1 KiB
Python
Raw Normal View History

2022-10-18 19:17:36 +10:00
import logging
from aiogram import Bot, Dispatcher, executor, types
2022-10-18 20:22:30 +10:00
from aiogram.types import ReplyKeyboardRemove, ReplyKeyboardMarkup, KeyboardButton
2022-10-18 19:17:36 +10:00
API_TOKEN = '5724991559:AAEuLvpLsgP6LHRGMSyFtQLlR5qPQUO4b_w'
logging.basicConfig(level=logging.DEBUG)
# Initialize bot and dispatcher
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
2022-10-18 20:27:49 +10:00
# @dp.message_handler(commands=['start', 'help'])
# async def send_welcome(message: types.Message):
# await message.reply("Дарова пидорас!")
2022-10-18 19:17:36 +10:00
@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
#какую-то хуйню написал
2022-10-18 19:17:36 +10:00
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)
executor.start_polling(dp, skip_updates=True)