python-telegram-bot/examples/echobot2.py

75 lines
2.1 KiB
Python
Raw Normal View History

2015-11-15 20:02:09 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Simple Bot to reply to Telegram messages
# This program is dedicated to the public domain under the CC0 license.
2015-11-15 20:02:09 +01:00
"""
2015-11-24 21:06:55 +01:00
This Bot uses the Updater class to handle the bot.
2015-11-15 20:02:09 +01:00
First, a few handler functions are defined. Then, those functions are passed to
2015-11-22 14:47:38 +01:00
the Dispatcher and registered at their respective places.
2015-12-22 13:23:59 +01:00
Then, the bot is started and runs until we press Ctrl-C on the command line.
2015-11-15 20:02:09 +01:00
2015-11-15 20:13:03 +01:00
Usage:
Basic Echobot example, repeats messages.
2015-12-22 13:23:59 +01:00
Press Ctrl-C on the command line or send a signal to the process to stop the
bot.
2015-11-15 20:02:09 +01:00
"""
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
2015-11-15 20:02:09 +01:00
import logging
# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
2015-11-15 20:02:09 +01:00
2015-11-22 19:20:16 +01:00
logger = logging.getLogger(__name__)
2015-11-15 20:02:09 +01:00
2015-11-24 21:06:55 +01:00
2015-12-22 13:23:59 +01:00
# Define a few command handlers. These usually take the two arguments bot and
# update. Error handlers also receive the raised TelegramError object in error.
2015-11-15 20:02:09 +01:00
def start(bot, update):
update.message.reply_text('Hi!')
2015-11-15 20:02:09 +01:00
def help(bot, update):
update.message.reply_text('Help!')
2015-11-15 20:02:09 +01:00
def echo(bot, update):
update.message.reply_text(update.message.text)
2015-11-15 20:02:09 +01:00
def error(bot, update, error):
2015-11-22 19:20:16 +01:00
logger.warn('Update "%s" caused error "%s"' % (update, error))
2015-11-15 20:02:09 +01:00
def main():
# Create the EventHandler and pass it your bot's token.
2015-11-22 19:15:37 +01:00
updater = Updater("TOKEN")
2015-11-15 20:02:09 +01:00
2015-11-22 14:47:38 +01:00
# Get the dispatcher to register handlers
2015-11-22 19:15:37 +01:00
dp = updater.dispatcher
2015-11-15 20:02:09 +01:00
# on different commands - answer in Telegram
dp.add_handler(CommandHandler("start", start))
dp.add_handler(CommandHandler("help", help))
2015-11-15 20:02:09 +01:00
# on noncommand i.e message - echo the message on Telegram
dp.add_handler(MessageHandler([Filters.text], echo))
2015-11-15 20:02:09 +01:00
2015-12-22 13:23:59 +01:00
# log all errors
dp.add_error_handler(error)
2015-11-15 20:02:09 +01:00
# Start the Bot
2015-12-22 13:23:59 +01:00
updater.start_polling()
2015-11-22 19:15:37 +01:00
2015-12-22 13:23:59 +01:00
# Run the bot until the you presses Ctrl-C or the process receives SIGINT,
# SIGTERM or SIGABRT. This should be used most of the time, since
# start_polling() is non-blocking and will stop the bot gracefully.
2015-11-22 19:15:37 +01:00
updater.idle()
2015-11-15 20:02:09 +01:00
2015-11-15 20:02:09 +01:00
if __name__ == '__main__':
main()