python-telegram-bot/examples/inlinekeyboard.py

63 lines
1.9 KiB
Python
Raw Normal View History

2016-04-16 20:32:44 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Basic example for a bot that uses inline keyboards.
2016-04-16 20:32:44 +02:00
# This program is dedicated to the public domain under the CC0 license.
"""
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(bot, update):
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(bot, update):
2016-04-16 20:55:43 +02:00
query = update.callback_query
2016-07-20 00:15:03 +02:00
bot.edit_message_text(text="Selected option: {}".format(query.data),
chat_id=query.message.chat_id,
message_id=query.message.message_id)
2016-04-16 20:32:44 +02:00
def help(bot, update):
update.message.reply_text("Use /start to test this bot.")
2016-04-16 20:32:44 +02:00
def error(bot, update, error):
"""Log Errors caused by Updates."""
logger.warning('Update "%s" caused error "%s"', update, error)
def main():
# Create the Updater and pass it your bot's token.
updater = Updater("TOKEN")
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()