python-telegram-bot/examples/echobot2.py

76 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
"""
2016-03-19 16:39:35 +01:00
from telegram.ext import Updater
2015-11-15 20:02:09 +01:00
import logging
# Enable logging
2015-12-22 13:23:59 +01:00
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):
bot.sendMessage(update.message.chat_id, text='Hi!')
def help(bot, update):
bot.sendMessage(update.message.chat_id, text='Help!')
def echo(bot, update):
bot.sendMessage(update.message.chat_id, text=update.message.text)
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
2015-11-22 14:47:38 +01:00
dp.addTelegramCommandHandler("start", start)
dp.addTelegramCommandHandler("help", help)
2015-11-15 20:02:09 +01:00
# on noncommand i.e message - echo the message on Telegram
2015-11-22 14:47:38 +01:00
dp.addTelegramMessageHandler(echo)
2015-11-15 20:02:09 +01:00
2015-12-22 13:23:59 +01:00
# log all errors
2015-11-22 14:47:38 +01:00
dp.addErrorHandler(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
if __name__ == '__main__':
main()