def show_time(bot: Bot, update: Update): text = time.ctime() bot.send_message( chat_id=update.message.chat_id, text=text, reply_markup=reply_keyboard() )
def help(bot: Bot, update: Update): bot.send_message( chat_id=update.message.chat_id, text='Это учебный бот \n\n' 'Список доступных команд надится в меню\n\n', reply_markup=reply_keyboard(), )
def echo(bot: Bot, update: Update): chat_id = update.message.chat_id text = 'Ваш ID = {}\n\n{}'.format(chat_id, update.message.text) bot.send_message( text=text, chat_id=update.message.chat_id, reply_markup=reply_keyboard() )
def sticker_info(bot: Bot, update: Update, context=CallbackContext): sticker = update.message.sticker.file_id emoji = update.message.sticker.emoji text = 'Ваш стикер ID:\n\n{}\n\nEmoji вашего стикера:\n{}'.format(sticker, emoji) bot.send_message( chat_id=update.message.chat_id, text=text, reply_markup=reply_keyboard(), )
def start(bot: Bot, update: Update, context=CallbackContext): bot.send_message( chat_id=update.message.chat_id, text='Вас приветствует Merchebot!', reply_markup=reply_keyboard(), )