python-telegram-bot/examples/inlinebot.py

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

105 lines
3.4 KiB
Python
Raw Normal View History

2016-01-04 17:31:06 +01:00
#!/usr/bin/env python
2022-05-15 14:08:40 +02:00
# pylint: disable=unused-argument, wrong-import-position
# This program is dedicated to the public domain under the CC0 license.
"""
2016-01-04 17:31:06 +01:00
First, a few handler functions are defined. Then, those functions are passed to
the Application and registered at their respective places.
2016-01-04 17:31:06 +01:00
Then, the bot is started and runs until we press Ctrl-C on the command line.
Usage:
Basic inline bot example. Applies different text transformations.
Press Ctrl-C on the command line or send a signal to the process to stop the
bot.
"""
import logging
from html import escape
from uuid import uuid4
2016-01-04 17:31:06 +01:00
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, "
f"visit https://github.com/python-telegram-bot/python-telegram-bot/tree/v{TG_VER}/examples"
)
from telegram import InlineQueryResultArticle, InputTextMessageContent, Update
from telegram.constants import ParseMode
from telegram.ext import Application, CommandHandler, ContextTypes, InlineQueryHandler
2016-01-04 17:31:06 +01:00
# Enable logging
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
)
2016-01-04 17:31:06 +01:00
logger = logging.getLogger(__name__)
2019-10-11 20:10:21 +02:00
# Define a few command handlers. These usually take the two arguments update and
# context.
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
"""Send a message when the command /start is issued."""
await update.message.reply_text("Hi!")
2016-01-04 17:31:06 +01:00
async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
"""Send a message when the command /help is issued."""
await update.message.reply_text("Help!")
2016-01-04 17:31:06 +01:00
async def inline_query(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
"""Handle the inline query. This is run when you type: @botusername <query>"""
2016-04-22 15:36:46 +02:00
query = update.inline_query.query
if query == "":
return
results = [
InlineQueryResultArticle(
id=str(uuid4()),
title="Caps",
input_message_content=InputTextMessageContent(query.upper()),
),
InlineQueryResultArticle(
id=str(uuid4()),
title="Bold",
input_message_content=InputTextMessageContent(
f"<b>{escape(query)}</b>", parse_mode=ParseMode.HTML
),
),
InlineQueryResultArticle(
id=str(uuid4()),
title="Italic",
input_message_content=InputTextMessageContent(
f"<i>{escape(query)}</i>", parse_mode=ParseMode.HTML
),
),
]
2016-04-22 15:36:46 +02:00
await update.inline_query.answer(results)
2016-01-04 17:31:06 +01:00
def main() -> None:
"""Run the bot."""
# Create the Application and pass it your bot's token.
application = Application.builder().token("TOKEN").build()
2016-01-04 17:31:06 +01:00
# on different commands - answer in Telegram
application.add_handler(CommandHandler("start", start))
application.add_handler(CommandHandler("help", help_command))
2016-01-04 17:31:06 +01:00
# on non command i.e message - echo the message on Telegram
application.add_handler(InlineQueryHandler(inline_query))
2016-01-04 17:31:06 +01:00
# Run the bot until the user presses Ctrl-C
application.run_polling()
2016-01-04 17:31:06 +01:00
2016-01-04 17:31:06 +01:00
if __name__ == "__main__":
main()