python-telegram-bot/examples/rawapibot.py

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

67 lines
2.3 KiB
Python
Raw Normal View History

2020-07-16 19:17:57 +02:00
#!/usr/bin/env python
"""Simple Bot to reply to Telegram messages.
Doc Fixes (#2253) * Render-fixes for BP * docs: fix simple typo, submition -> submission (#2260) There is a small typo in tests/test_bot.py. Should read `submission` rather than `submition`. * Type on rawapibot.py docstring * typo * Typo: Filters.document(s) * Typo fix * Doc fix for messageentity (#2311) * Add New Shortcuts to Chat (#2291) * Add shortcuts * Add a note * Add run_async Parameter to ConversationHandler (#2292) * Add run_async parameter * Update docstring * Update test to explicitly specify parameter * Fix test job queue * Add version added tag to docs * Update docstring Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com> * Doc nitpicking Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com> Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de> * Fix rendering in messageentity Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de> Co-authored-by: zeshuaro <joshuaystang@gmail.com> Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com> * fix: type hints for TelegramError changed :class:`telegram.TelegramError` to :class:`telegram.error.TelegramError` * fix: the error can be more then just a Telegram error * Doc fix for inlinekeyboardbutton.py added missing colon which broke rendering * fix: remove context argument and doc remark look at us already being in post 12 * use rtd badge * filters doc fixes * fix some rendering * Doc & Rendering fixes for helpers.py Co-authored-by: Tim Gates <tim.gates@iress.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com> Co-authored-by: zeshuaro <joshuaystang@gmail.com> Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com> Co-authored-by: Harshil <ilovebhagwan@gmail.com>
2021-02-01 17:59:39 +01:00
This is built on the API wrapper, see echobot.py to see the same example built
2020-07-16 19:17:57 +02:00
on the telegram.ext bot framework.
This program is dedicated to the public domain under the CC0 license.
"""
import asyncio
2023-03-25 19:18:04 +01:00
import contextlib
2020-07-16 19:17:57 +02:00
import logging
from typing import NoReturn
from telegram import Bot, Update
from telegram.error import Forbidden, NetworkError
2020-07-16 19:17:57 +02:00
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO
)
# set higher logging level for httpx to avoid all GET and POST requests being logged
logging.getLogger("httpx").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)
2020-07-16 19:17:57 +02:00
async def main() -> NoReturn:
2020-07-16 19:17:57 +02:00
"""Run the bot."""
# Here we use the `async with` syntax to properly initialize and shutdown resources.
async with Bot("TOKEN") as bot:
# get the first pending update_id, this is so we can skip over it in case
# we get a "Forbidden" exception.
2020-07-16 19:17:57 +02:00
try:
update_id = (await bot.get_updates())[0].update_id
except IndexError:
update_id = None
logger.info("listening for new messages...")
while True:
try:
update_id = await echo(bot, update_id)
except NetworkError:
await asyncio.sleep(1)
except Forbidden:
# The user has removed or blocked the bot.
update_id += 1
2020-07-16 19:17:57 +02:00
async def echo(bot: Bot, update_id: int) -> int:
2020-07-16 19:17:57 +02:00
"""Echo the message the user sent."""
# Request updates after the last update_id
updates = await bot.get_updates(offset=update_id, timeout=10, allowed_updates=Update.ALL_TYPES)
for update in updates:
next_update_id = update.update_id + 1
2020-07-16 19:17:57 +02:00
# your bot can receive updates without messages
# and not all messages contain text
if update.message and update.message.text:
# Reply to the message
logger.info("Found message %s!", update.message.text)
await update.message.reply_text(update.message.text)
return next_update_id
return update_id
2020-07-16 19:17:57 +02:00
if __name__ == "__main__":
2023-03-25 19:18:04 +01:00
with contextlib.suppress(KeyboardInterrupt): # Ignore exception when Ctrl-C is pressed
asyncio.run(main())