python-telegram-bot/examples/echobot.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2022-05-15 14:08:40 +02:00
# pylint: disable=unused-argument, wrong-import-position
2020-07-16 19:17:57 +02:00
# This program is dedicated to the public domain under the CC0 license.
"""
2020-07-16 19:17:57 +02:00
Simple Bot to reply to Telegram messages.
First, a few handler functions are defined. Then, those functions are passed to
the Application and registered at their respective places.
2020-07-16 19:17:57 +02:00
Then, the bot is started and runs until we press Ctrl-C on the command line.
Usage:
Basic Echobot example, repeats messages.
Press Ctrl-C on the command line or send a signal to the process to stop the
bot.
"""
import logging
2022-05-15 14:08:40 +02:00
from telegram import __version__ as TG_VER
try:
from telegram import __version_info__
except ImportError:
__version_info__ = (0, 0, 0, 0, 0) # type: ignore[assignment]
if __version_info__ < (20, 0, 0, "alpha", 1):
raise RuntimeError(
f"This example is not compatible with your current PTB version {TG_VER}. To view the "
f"{TG_VER} version of this example, "
2022-06-09 17:22:32 +02:00
f"visit https://docs.python-telegram-bot.org/en/v{TG_VER}/examples.html"
2022-05-15 14:08:40 +02:00
)
from telegram import ForceReply, Update
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters
2020-07-16 19:17:57 +02:00
# Enable logging
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
)
logger = logging.getLogger(__name__)
# Define a few command handlers. These usually take the two arguments update and
# context.
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
2020-07-16 19:17:57 +02:00
"""Send a message when the command /start is issued."""
user = update.effective_user
await update.message.reply_html(
rf"Hi {user.mention_html()}!",
reply_markup=ForceReply(selective=True),
)
2020-07-16 19:17:57 +02:00
async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
2020-07-16 19:17:57 +02:00
"""Send a message when the command /help is issued."""
await update.message.reply_text("Help!")
2020-07-16 19:17:57 +02:00
async def echo(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
2020-07-16 19:17:57 +02:00
"""Echo the user message."""
await update.message.reply_text(update.message.text)
2016-06-12 15:30:56 +02:00
def main() -> None:
2020-07-16 19:17:57 +02:00
"""Start the bot."""
# Create the Application and pass it your bot's token.
application = Application.builder().token("TOKEN").build()
2020-07-16 19:17:57 +02:00
# on different commands - answer in Telegram
application.add_handler(CommandHandler("start", start))
application.add_handler(CommandHandler("help", help_command))
2020-07-16 19:17:57 +02:00
# on non command i.e message - echo the message on Telegram
application.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, echo))
2020-07-16 19:17:57 +02:00
# Run the bot until the user presses Ctrl-C
application.run_polling()
2015-08-20 19:58:57 +02:00
if __name__ == "__main__":
main()