Esempio n. 1
0
def do_start(update, context):
    update.message.reply_text(
        text="Hi! ",
        reply_markup=get_base_reply_keyboard(),
    )
Esempio n. 2
0
def do_start(update: Update, context: CallbackContext):
    update.message.reply_text(
        text="Привет! Отправь мне что-нибудь",
        reply_markup=get_base_reply_keyboard(),
    )
Esempio n. 3
0
File: main.py Progetto: deniro2/bot
def do_start(bot: Bot, update: Update):
    bot.send_message(
        chat_id=update.message.chat_id,
        text="Привет! Отправь мне что-нибудь",
        reply_markup=get_base_reply_keyboard(),
    )