Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<p align="center">A simple, but extensible Python implementation for the <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</p>
<p align="center">Both synchronous and asynchronous.</p>

## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#july-3-2025"><img src="https://img.shields.io/badge/Bot%20API-9.1-blue?logo=telegram" alt="Supported Bot API version"></a>
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#august-15-2025"><img src="https://img.shields.io/badge/Bot%20API-9.2-blue?logo=telegram" alt="Supported Bot API version"></a>

<h2><a href='https://pytba.readthedocs.io/en/latest/index.html'>Official documentation</a></h2>
<h2><a href='https://pytba.readthedocs.io/ru/latest/index.html'>Official ru documentation</a></h2>
Expand Down
368 changes: 324 additions & 44 deletions telebot/__init__.py

Large diffs are not rendered by default.

132 changes: 112 additions & 20 deletions telebot/apihelper.py

Large diffs are not rendered by default.

384 changes: 341 additions & 43 deletions telebot/async_telebot.py

Large diffs are not rendered by default.

135 changes: 115 additions & 20 deletions telebot/asyncio_helper.py

Large diffs are not rendered by default.

404 changes: 398 additions & 6 deletions telebot/types.py

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion telebot/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
'chat_background_set', 'forum_topic_created', 'forum_topic_closed', 'forum_topic_reopened', 'forum_topic_edited',
'general_forum_topic_hidden', 'general_forum_topic_unhidden', 'write_access_allowed', 'users_shared', 'chat_shared',
'giveaway_created', 'giveaway_winners', 'giveaway_completed', 'boost_added', 'paid_message_price_changed',
'checklist_tasks_done', 'checklist_tasks_added', 'direct_message_price_changed',
'checklist_tasks_done', 'checklist_tasks_added', 'direct_message_price_changed', 'suggested_post_refunded',
'suggested_post_info', 'suggested_post_approved', 'suggested_post_approval_failed', 'suggested_post_declined',
'suggested_post_paid'
]

#: All update types, should be used for allowed_updates parameter in polling.
Expand Down