Answer the question
In order to leave comments, you need to log in
How to show popup window in telegram bot?
I am writing a telegram bot (telebot library) how to make it so that after sending a message a window pops up something like "good".
Here is part of the code:
def askhow(message): # Функция узнает сколько товара по каждой позиции
chat_id = message.chat.id
text = message.text
if text is None:
msg = bot.send_message(chat_id, 'Выберите количество')
bot.register_next_step_handler(msg, askhow)
return
if chat_id not in orders: # Добавляем в словарь нового юзера, который добавил что-то в корзину
orders[chat_id] = [prices[last_order[chat_id]] * int(text), f'{last_order[chat_id]} - {text}']
elif chat_id in orders: # Обновляем корзину уже существующего юзера
orders[chat_id][0] = orders[chat_id][0] + prices[last_order[chat_id]] * int(text)
orders[chat_id].append(f'{last_order[chat_id]} - {text}')
bot.send_message(chat_id, text='Успешно добавлено в корзину')
Answer the question
In order to leave comments, you need to log in
bot.answer_callback_query(call.id, "Хорошо", show_alert=True)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question