python-telegram-bot/examples/inlinekeyboard.py

65 lines
1.9 KiB
Python
Raw Normal View History

2016-04-16 20:32:44 +02:00
#!/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.
"""
2016-04-16 20:32:44 +02:00
import logging
2016-07-20 00:15:03 +02:00
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from telegram.ext import Updater, CommandHandler, CallbackQueryHandler
2016-04-16 20:32:44 +02:00
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
2016-07-20 00:15:03 +02:00
level=logging.INFO)
logger = logging.getLogger(__name__)
2016-04-16 20:32:44 +02:00
def start(update, context):
2016-07-20 00:15:03 +02:00
keyboard = [[InlineKeyboardButton("Option 1", callback_data='1'),
InlineKeyboardButton("Option 2", callback_data='2')],
2016-04-16 20:32:44 +02:00
2016-07-20 00:15:03 +02:00
[InlineKeyboardButton("Option 3", callback_data='3')]]
2016-04-16 20:32:44 +02:00
2016-07-20 00:15:03 +02:00
reply_markup = InlineKeyboardMarkup(keyboard)
2016-04-16 20:32:44 +02:00
update.message.reply_text('Please choose:', reply_markup=reply_markup)
2016-04-16 20:32:44 +02:00
def button(update, context):
2016-04-16 20:55:43 +02:00
query = update.callback_query
2016-07-20 00:15:03 +02:00
query.edit_message_text(text="Selected option: {}".format(query.data))
2016-04-16 20:32:44 +02:00
def help(update, context):
update.message.reply_text("Use /start to test this bot.")
2016-04-16 20:32:44 +02:00
def error(update, context):
"""Log Errors caused by Updates."""
logger.warning('Update "%s" caused error "%s"', update, context.error)
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)
2016-04-16 20:32:44 +02:00
updater.dispatcher.add_handler(CommandHandler('start', start))
updater.dispatcher.add_handler(CallbackQueryHandler(button))
updater.dispatcher.add_handler(CommandHandler('help', help))
updater.dispatcher.add_error_handler(error)
2016-07-20 00:15:03 +02:00
# Start the Bot
updater.start_polling()
2016-04-16 20:32:44 +02:00
# Run the bot until the user presses Ctrl-C or the process receives SIGINT,
# SIGTERM or SIGABRT
updater.idle()
2016-04-16 20:32:44 +02:00
if __name__ == '__main__':
main()