mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-01-07 11:05:19 +01:00
898994fcf6
Most examples use the same error handler, that error handler logs update.to_dict but doesn't log error traceback. Hiding error traceback is quite bad, removing the error handler entirely causes PTB to use default error logging which does include error traceback.
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# This program is dedicated to the public domain under the CC0 license.
|
|
|
|
"""
|
|
Basic example for a bot that uses inline keyboards.
|
|
"""
|
|
import logging
|
|
|
|
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
|
|
from telegram.ext import Updater, CommandHandler, CallbackQueryHandler
|
|
|
|
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
|
level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def start(update, context):
|
|
keyboard = [[InlineKeyboardButton("Option 1", callback_data='1'),
|
|
InlineKeyboardButton("Option 2", callback_data='2')],
|
|
|
|
[InlineKeyboardButton("Option 3", callback_data='3')]]
|
|
|
|
reply_markup = InlineKeyboardMarkup(keyboard)
|
|
|
|
update.message.reply_text('Please choose:', reply_markup=reply_markup)
|
|
|
|
|
|
def button(update, context):
|
|
query = update.callback_query
|
|
|
|
# CallbackQueries need to be answered, even if no notification to the user is needed
|
|
# Some clients may have trouble otherwise. See https://core.telegram.org/bots/api#callbackquery
|
|
query.answer()
|
|
|
|
query.edit_message_text(text="Selected option: {}".format(query.data))
|
|
|
|
|
|
def help(update, context):
|
|
update.message.reply_text("Use /start to test this bot.")
|
|
|
|
|
|
def main():
|
|
# Create the Updater and pass it your bot's token.
|
|
# Make sure to set use_context=True to use the new context based callbacks
|
|
# Post version 12 this will no longer be necessary
|
|
updater = Updater("TOKEN", use_context=True)
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('start', start))
|
|
updater.dispatcher.add_handler(CallbackQueryHandler(button))
|
|
updater.dispatcher.add_handler(CommandHandler('help', help))
|
|
|
|
# Start the Bot
|
|
updater.start_polling()
|
|
|
|
# Run the bot until the user presses Ctrl-C or the process receives SIGINT,
|
|
# SIGTERM or SIGABRT
|
|
updater.idle()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|