def reply_to_start_command(bot, update, user_data):
first_name = update.effective_user.first_name
last_name = update.effective_user.last_name
avatar = get_avatar(user_data)
text = "??????, {} {}! ? ???, ??????? ???????? ??????? /start".format(first_name, avatar)
logging.info("???????????? {} {} ????? {}".format(first_name, last_name, "/start"))
update.message.reply_text(text, reply_markup=ReplyKeyboardMarkup(get_keyboard(), resize_keyboard=True))
评论列表
文章目录