2015-07-07 21:50:36 +02:00
|
|
|
#!/usr/bin/env python
|
2021-10-08 08:17:00 +02:00
|
|
|
# pylint: disable=redefined-builtin
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2024-02-19 20:06:25 +01:00
|
|
|
# Copyright (C) 2015-2024
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram User."""
|
2020-12-30 13:41:07 +01:00
|
|
|
from datetime import datetime
|
2023-01-01 14:24:30 +01:00
|
|
|
from typing import TYPE_CHECKING, Optional, Sequence, Tuple, Union
|
2015-07-07 21:50:36 +02:00
|
|
|
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram._inline.inlinekeyboardbutton import InlineKeyboardButton
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._menubutton import MenuButton
|
|
|
|
from telegram._telegramobject import TelegramObject
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_NONE
|
2023-10-25 21:53:43 +02:00
|
|
|
from telegram._utils.types import CorrectOptionID, FileInput, JSONDict, ODVInput, ReplyMarkup
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram.helpers import mention_html as helpers_mention_html
|
|
|
|
from telegram.helpers import mention_markdown as helpers_mention_markdown
|
2015-07-09 16:40:44 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
2020-12-30 13:41:07 +01:00
|
|
|
from telegram import (
|
2022-05-05 09:27:54 +02:00
|
|
|
Animation,
|
|
|
|
Audio,
|
|
|
|
Contact,
|
|
|
|
Document,
|
|
|
|
InlineKeyboardMarkup,
|
2020-12-30 13:41:07 +01:00
|
|
|
InputMediaAudio,
|
|
|
|
InputMediaDocument,
|
|
|
|
InputMediaPhoto,
|
|
|
|
InputMediaVideo,
|
2024-05-20 15:25:25 +02:00
|
|
|
InputPollOption,
|
2020-12-30 13:41:07 +01:00
|
|
|
LabeledPrice,
|
2024-02-08 17:12:00 +01:00
|
|
|
LinkPreviewOptions,
|
2020-12-30 13:41:07 +01:00
|
|
|
Location,
|
2022-05-05 09:27:54 +02:00
|
|
|
Message,
|
|
|
|
MessageEntity,
|
|
|
|
MessageId,
|
|
|
|
PhotoSize,
|
2024-02-08 17:12:00 +01:00
|
|
|
ReplyParameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
Sticker,
|
2024-02-08 17:12:00 +01:00
|
|
|
UserChatBoosts,
|
2022-05-05 09:27:54 +02:00
|
|
|
UserProfilePhotos,
|
2020-12-30 13:41:07 +01:00
|
|
|
Venue,
|
2022-05-05 09:27:54 +02:00
|
|
|
Video,
|
2020-12-30 13:41:07 +01:00
|
|
|
VideoNote,
|
|
|
|
Voice,
|
|
|
|
)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2015-07-09 16:40:44 +02:00
|
|
|
|
2015-07-20 04:06:04 +02:00
|
|
|
class User(TelegramObject):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This object represents a Telegram user or bot.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`id` is equal.
|
|
|
|
|
2022-05-18 17:18:44 +02:00
|
|
|
.. versionchanged:: 20.0
|
|
|
|
The following are now keyword-only arguments in Bot methods:
|
|
|
|
``location``, ``filename``, ``venue``, ``contact``,
|
|
|
|
``{read, write, connect, pool}_timeout`` ``api_kwargs``. Use a named argument for those,
|
|
|
|
and notice that some positional arguments changed position as a result.
|
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`int`): Unique identifier for this user or bot.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
is_bot (:obj:`bool`): :obj:`True`, if this user is a bot.
|
2023-01-01 16:24:00 +01:00
|
|
|
first_name (:obj:`str`): User's or bot's first name.
|
|
|
|
last_name (:obj:`str`, optional): User's or bot's last name.
|
|
|
|
username (:obj:`str`, optional): User's or bot's username.
|
2017-07-23 22:33:08 +02:00
|
|
|
language_code (:obj:`str`, optional): IETF language tag of the user's language.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
can_join_groups (:obj:`str`, optional): :obj:`True`, if the bot can be invited to groups.
|
2024-04-12 11:58:25 +02:00
|
|
|
Returned only in :meth:`telegram.Bot.get_me`.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
can_read_all_group_messages (:obj:`str`, optional): :obj:`True`, if privacy mode is
|
2024-04-12 11:58:25 +02:00
|
|
|
disabled for the bot. Returned only in :meth:`telegram.Bot.get_me`.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
supports_inline_queries (:obj:`str`, optional): :obj:`True`, if the bot supports inline
|
2024-04-12 11:58:25 +02:00
|
|
|
queries. Returned only in :meth:`telegram.Bot.get_me`.
|
2022-10-07 11:51:53 +02:00
|
|
|
|
2022-06-27 18:54:11 +02:00
|
|
|
is_premium (:obj:`bool`, optional): :obj:`True`, if this user is a Telegram Premium user.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
added_to_attachment_menu (:obj:`bool`, optional): :obj:`True`, if this user added
|
|
|
|
the bot to the attachment menu.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
2024-04-12 11:58:25 +02:00
|
|
|
can_connect_to_business (:obj:`bool`, optional): :obj:`True`, if the bot can be connected
|
|
|
|
to a Telegram Business account to receive its messages. Returned only in
|
|
|
|
:meth:`telegram.Bot.get_me`.
|
|
|
|
|
2024-04-12 12:39:38 +02:00
|
|
|
.. versionadded:: 21.1
|
2024-08-02 13:43:27 +02:00
|
|
|
has_main_web_app (:obj:`bool`, optional): :obj:`True`, if the bot has the main Web App.
|
|
|
|
Returned only in :meth:`telegram.Bot.get_me`.
|
|
|
|
|
2024-09-01 15:25:34 +02:00
|
|
|
.. versionadded:: 21.5
|
2024-04-12 11:58:25 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
|
|
|
id (:obj:`int`): Unique identifier for this user or bot.
|
|
|
|
is_bot (:obj:`bool`): :obj:`True`, if this user is a bot.
|
|
|
|
first_name (:obj:`str`): User's or bot's first name.
|
|
|
|
last_name (:obj:`str`): Optional. User's or bot's last name.
|
|
|
|
username (:obj:`str`): Optional. User's or bot's username.
|
|
|
|
language_code (:obj:`str`): Optional. IETF language tag of the user's language.
|
|
|
|
can_join_groups (:obj:`str`): Optional. :obj:`True`, if the bot can be invited to groups.
|
|
|
|
Returned only in :attr:`telegram.Bot.get_me` requests.
|
|
|
|
can_read_all_group_messages (:obj:`str`): Optional. :obj:`True`, if privacy mode is
|
|
|
|
disabled for the bot. Returned only in :attr:`telegram.Bot.get_me` requests.
|
|
|
|
supports_inline_queries (:obj:`str`): Optional. :obj:`True`, if the bot supports inline
|
|
|
|
queries. Returned only in :attr:`telegram.Bot.get_me` requests.
|
2022-06-27 18:54:11 +02:00
|
|
|
is_premium (:obj:`bool`): Optional. :obj:`True`, if this user is a Telegram
|
|
|
|
Premium user.
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
added_to_attachment_menu (:obj:`bool`): Optional. :obj:`True`, if this user added
|
|
|
|
the bot to the attachment menu.
|
2020-12-30 15:59:50 +01:00
|
|
|
|
2022-06-27 18:54:11 +02:00
|
|
|
.. versionadded:: 20.0
|
2024-04-12 11:58:25 +02:00
|
|
|
can_connect_to_business (:obj:`bool`): Optional. :obj:`True`, if the bot can be connected
|
|
|
|
to a Telegram Business account to receive its messages. Returned only in
|
|
|
|
:meth:`telegram.Bot.get_me`.
|
|
|
|
|
2024-04-12 12:39:38 +02:00
|
|
|
.. versionadded:: 21.1
|
2024-08-02 13:43:27 +02:00
|
|
|
has_main_web_app (:obj:`bool`) Optional. :obj:`True`, if the bot has the main Web App.
|
|
|
|
Returned only in :meth:`telegram.Bot.get_me`.
|
|
|
|
|
2024-09-01 15:25:34 +02:00
|
|
|
.. versionadded:: 21.5
|
2024-08-02 13:43:27 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
.. |user_chat_id_note| replace:: This shortcuts build on the assumption that :attr:`User.id`
|
|
|
|
coincides with the :attr:`Chat.id` of the private chat with the user. This has been the
|
|
|
|
case so far, but Telegram does not guarantee that this stays this way.
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = (
|
2024-02-05 19:24:00 +01:00
|
|
|
"added_to_attachment_menu",
|
2024-04-12 11:58:25 +02:00
|
|
|
"can_connect_to_business",
|
2024-02-05 19:24:00 +01:00
|
|
|
"can_join_groups",
|
2021-05-29 16:18:16 +02:00
|
|
|
"can_read_all_group_messages",
|
|
|
|
"first_name",
|
2024-08-02 13:43:27 +02:00
|
|
|
"has_main_web_app",
|
2021-05-29 16:18:16 +02:00
|
|
|
"id",
|
2024-02-05 19:24:00 +01:00
|
|
|
"is_bot",
|
2022-06-27 18:54:11 +02:00
|
|
|
"is_premium",
|
2024-02-05 19:24:00 +01:00
|
|
|
"language_code",
|
|
|
|
"last_name",
|
|
|
|
"supports_inline_queries",
|
|
|
|
"username",
|
2021-05-29 16:18:16 +02:00
|
|
|
)
|
|
|
|
|
2016-12-30 13:57:59 +01:00
|
|
|
def __init__(
|
2020-11-05 18:12:01 +01:00
|
|
|
self,
|
2022-10-07 11:51:53 +02:00
|
|
|
id: int,
|
2020-10-06 19:28:40 +02:00
|
|
|
first_name: str,
|
|
|
|
is_bot: bool,
|
2023-05-18 07:57:59 +02:00
|
|
|
last_name: Optional[str] = None,
|
|
|
|
username: Optional[str] = None,
|
|
|
|
language_code: Optional[str] = None,
|
|
|
|
can_join_groups: Optional[bool] = None,
|
|
|
|
can_read_all_group_messages: Optional[bool] = None,
|
|
|
|
supports_inline_queries: Optional[bool] = None,
|
|
|
|
is_premium: Optional[bool] = None,
|
|
|
|
added_to_attachment_menu: Optional[bool] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
can_connect_to_business: Optional[bool] = None,
|
2024-08-02 13:43:27 +02:00
|
|
|
has_main_web_app: Optional[bool] = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
*,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-10-06 19:28:40 +02:00
|
|
|
):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2015-08-22 04:15:29 +02:00
|
|
|
# Required
|
2023-09-09 23:12:30 +02:00
|
|
|
self.id: int = id
|
2023-02-02 18:55:07 +01:00
|
|
|
self.first_name: str = first_name
|
|
|
|
self.is_bot: bool = is_bot
|
2015-08-22 04:15:29 +02:00
|
|
|
# Optionals
|
2023-02-02 18:55:07 +01:00
|
|
|
self.last_name: Optional[str] = last_name
|
|
|
|
self.username: Optional[str] = username
|
|
|
|
self.language_code: Optional[str] = language_code
|
|
|
|
self.can_join_groups: Optional[bool] = can_join_groups
|
|
|
|
self.can_read_all_group_messages: Optional[bool] = can_read_all_group_messages
|
|
|
|
self.supports_inline_queries: Optional[bool] = supports_inline_queries
|
|
|
|
self.is_premium: Optional[bool] = is_premium
|
|
|
|
self.added_to_attachment_menu: Optional[bool] = added_to_attachment_menu
|
2024-04-12 11:58:25 +02:00
|
|
|
self.can_connect_to_business: Optional[bool] = can_connect_to_business
|
2024-08-02 13:43:27 +02:00
|
|
|
self.has_main_web_app: Optional[bool] = has_main_web_app
|
2016-09-20 06:36:55 +02:00
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
self._id_attrs = (self.id,)
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2015-07-15 15:05:31 +02:00
|
|
|
@property
|
2020-10-06 19:28:40 +02:00
|
|
|
def name(self) -> str:
|
2018-05-09 11:42:12 +02:00
|
|
|
""":obj:`str`: Convenience property. If available, returns the user's :attr:`username`
|
2021-05-27 09:38:17 +02:00
|
|
|
prefixed with "@". If :attr:`username` is not available, returns :attr:`full_name`.
|
|
|
|
"""
|
2015-07-15 15:05:31 +02:00
|
|
|
if self.username:
|
2020-11-23 22:09:29 +01:00
|
|
|
return f"@{self.username}"
|
2017-12-30 21:58:32 +01:00
|
|
|
return self.full_name
|
2015-07-15 15:05:31 +02:00
|
|
|
|
2017-12-30 14:13:06 +01:00
|
|
|
@property
|
2020-10-06 19:28:40 +02:00
|
|
|
def full_name(self) -> str:
|
2018-05-09 11:42:12 +02:00
|
|
|
""":obj:`str`: Convenience property. The user's :attr:`first_name`, followed by (if
|
2021-05-27 09:38:17 +02:00
|
|
|
available) :attr:`last_name`.
|
|
|
|
"""
|
2017-12-30 14:13:06 +01:00
|
|
|
if self.last_name:
|
2021-01-09 17:48:56 +01:00
|
|
|
return f"{self.first_name} {self.last_name}"
|
2017-12-30 14:13:06 +01:00
|
|
|
return self.first_name
|
|
|
|
|
2018-05-09 11:42:12 +02:00
|
|
|
@property
|
2020-10-06 19:28:40 +02:00
|
|
|
def link(self) -> Optional[str]:
|
2018-05-09 11:42:12 +02:00
|
|
|
""":obj:`str`: Convenience property. If :attr:`username` is available, returns a t.me link
|
2021-05-27 09:38:17 +02:00
|
|
|
of the user.
|
|
|
|
"""
|
2018-05-09 11:42:12 +02:00
|
|
|
if self.username:
|
2020-11-23 22:09:29 +01:00
|
|
|
return f"https://t.me/{self.username}"
|
2018-05-09 11:42:12 +02:00
|
|
|
return None
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def get_profile_photos(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
offset: Optional[int] = None,
|
|
|
|
limit: Optional[int] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> Optional["UserProfilePhotos"]:
|
2022-04-24 12:38:09 +02:00
|
|
|
"""Shortcut for::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.get_user_profile_photos(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.get_user_profile_photos`.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().get_user_profile_photos(
|
2020-12-30 13:41:07 +01:00
|
|
|
user_id=self.id,
|
|
|
|
offset=offset,
|
|
|
|
limit=limit,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
2017-05-21 14:32:36 +02:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def mention_markdown(self, name: Optional[str] = None) -> str:
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
Note:
|
2021-10-19 18:28:19 +02:00
|
|
|
:tg-const:`telegram.constants.ParseMode.MARKDOWN` is a legacy mode, retained by
|
|
|
|
Telegram for backward compatibility. You should use :meth:`mention_markdown_v2`
|
|
|
|
instead.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
|
2017-09-01 08:40:05 +02:00
|
|
|
Args:
|
2018-05-09 11:42:12 +02:00
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
Returns:
|
2020-03-28 16:37:26 +01:00
|
|
|
:obj:`str`: The inline mention for the user as markdown (version 1).
|
2018-05-09 11:42:12 +02:00
|
|
|
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
2018-05-09 11:42:12 +02:00
|
|
|
if name:
|
2021-09-22 16:49:10 +02:00
|
|
|
return helpers_mention_markdown(self.id, name)
|
|
|
|
return helpers_mention_markdown(self.id, self.full_name)
|
2017-09-01 08:40:05 +02:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def mention_markdown_v2(self, name: Optional[str] = None) -> str:
|
2020-03-28 16:37:26 +01:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`str`: The inline mention for the user as markdown (version 2).
|
|
|
|
|
|
|
|
"""
|
|
|
|
if name:
|
2021-09-22 16:49:10 +02:00
|
|
|
return helpers_mention_markdown(self.id, name, version=2)
|
|
|
|
return helpers_mention_markdown(self.id, self.full_name, version=2)
|
2020-03-28 16:37:26 +01:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def mention_html(self, name: Optional[str] = None) -> str:
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
|
|
|
Args:
|
2018-05-09 11:42:12 +02:00
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
2017-09-01 08:40:05 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`str`: The inline mention for the user as HTML.
|
2018-05-09 11:42:12 +02:00
|
|
|
|
2017-09-01 08:40:05 +02:00
|
|
|
"""
|
2018-05-09 11:42:12 +02:00
|
|
|
if name:
|
2021-09-22 16:49:10 +02:00
|
|
|
return helpers_mention_html(self.id, name)
|
|
|
|
return helpers_mention_html(self.id, self.full_name)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def mention_button(self, name: Optional[str] = None) -> InlineKeyboardButton:
|
2022-04-24 12:38:09 +02:00
|
|
|
"""Shortcut for::
|
2021-12-11 15:21:56 +01:00
|
|
|
|
|
|
|
InlineKeyboardButton(text=name, url=f"tg://user?id={update.effective_user.id}")
|
|
|
|
|
|
|
|
.. versionadded:: 13.9
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (:obj:`str`): The name used as a link for the user. Defaults to :attr:`full_name`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.InlineKeyboardButton`: InlineButton with url set to the user mention
|
|
|
|
"""
|
|
|
|
return InlineKeyboardButton(text=name or self.full_name, url=f"tg://user?id={self.id}")
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def pin_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2021-03-14 16:42:03 +01:00
|
|
|
message_id: int,
|
2021-02-19 19:07:48 +01:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2024-08-02 13:43:27 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> bool:
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.pin_chat_message(chat_id=update.effective_user.id, *args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.pin_chat_message`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().pin_chat_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
message_id=message_id,
|
|
|
|
disable_notification=disable_notification,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2024-08-02 13:43:27 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def unpin_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_id: Optional[int] = None,
|
2024-08-02 13:43:27 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> bool:
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.unpin_chat_message(chat_id=update.effective_user.id, *args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.unpin_chat_message`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().unpin_chat_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
message_id=message_id,
|
2024-08-02 13:43:27 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def unpin_all_messages(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> bool:
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.unpin_all_chat_messages(chat_id=update.effective_user.id, *args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.unpin_all_chat_messages`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().unpin_all_chat_messages(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
text: str,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
link_preview_options: ODVInput["LinkPreviewOptions"] = DEFAULT_NONE,
|
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
disable_web_page_preview: Optional[bool] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_message(update.effective_user.id, *args, **kwargs)
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_message`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
text=text,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
disable_web_page_preview=disable_web_page_preview,
|
2024-02-08 17:12:00 +01:00
|
|
|
link_preview_options=link_preview_options,
|
2020-12-30 13:41:07 +01:00
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-05-18 17:18:44 +02:00
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
entities=entities,
|
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
async def delete_message(
|
|
|
|
self,
|
|
|
|
message_id: int,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.delete_message(update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.delete_message`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().delete_message(
|
|
|
|
chat_id=self.id,
|
|
|
|
message_id=message_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def delete_messages(
|
|
|
|
self,
|
|
|
|
message_ids: Sequence[int],
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.delete_messages(update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.delete_messages`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().delete_messages(
|
|
|
|
chat_id=self.id,
|
|
|
|
message_ids=message_ids,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_photo(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
photo: Union[FileInput, "PhotoSize"],
|
2023-05-18 07:57:59 +02:00
|
|
|
caption: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
has_spoiler: Optional[bool] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
|
|
|
show_caption_above_media: Optional[bool] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_photo(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_photo`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_photo(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
photo=photo,
|
|
|
|
caption=caption,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
2023-01-01 17:00:49 +01:00
|
|
|
has_spoiler=has_spoiler,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_media_group(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-01-01 14:24:30 +01:00
|
|
|
media: Sequence[
|
2020-12-30 13:41:07 +01:00
|
|
|
Union["InputMediaAudio", "InputMediaDocument", "InputMediaPhoto", "InputMediaVideo"]
|
|
|
|
],
|
2021-02-19 19:07:48 +01:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2022-11-02 08:32:40 +01:00
|
|
|
caption: Optional[str] = None,
|
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-12-15 15:00:36 +01:00
|
|
|
) -> Tuple["Message", ...]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_media_group(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_media_group`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
2022-12-15 15:00:36 +01:00
|
|
|
Tuple[:class:`telegram.Message`:] On success, a tuple of :class:`~telegram.Message`
|
|
|
|
instances that were sent is returned.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_media_group(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
media=media,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2022-11-02 08:32:40 +01:00
|
|
|
caption=caption,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
caption_entities=caption_entities,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_audio(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
audio: Union[FileInput, "Audio"],
|
2023-05-18 07:57:59 +02:00
|
|
|
duration: Optional[int] = None,
|
|
|
|
performer: Optional[str] = None,
|
|
|
|
title: Optional[str] = None,
|
|
|
|
caption: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
thumbnail: Optional[FileInput] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_audio(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_audio`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_audio(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
audio=audio,
|
|
|
|
duration=duration,
|
|
|
|
performer=performer,
|
|
|
|
title=title,
|
|
|
|
caption=caption,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail=thumbnail,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_chat_action(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
action: str,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> bool:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_chat_action(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_chat_action`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:obj:`True`: On success.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_chat_action(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
action=action,
|
2023-01-01 17:00:49 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
send_action = send_chat_action
|
|
|
|
"""Alias for :attr:`send_chat_action`"""
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_contact(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
phone_number: Optional[str] = None,
|
|
|
|
first_name: Optional[str] = None,
|
|
|
|
last_name: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
vcard: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
contact: Optional["Contact"] = None,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_contact(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_contact`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_contact(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
phone_number=phone_number,
|
|
|
|
first_name=first_name,
|
|
|
|
last_name=last_name,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
contact=contact,
|
|
|
|
vcard=vcard,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_dice(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2021-02-19 19:07:48 +01:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
emoji: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_dice(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_dice`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_dice(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
emoji=emoji,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_document(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
document: Union[FileInput, "Document"],
|
2023-05-18 07:57:59 +02:00
|
|
|
caption: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
disable_content_type_detection: Optional[bool] = None,
|
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
thumbnail: Optional[FileInput] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_document(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_document`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_document(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
document=document,
|
|
|
|
filename=filename,
|
|
|
|
caption=caption,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
parse_mode=parse_mode,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail=thumbnail,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
disable_content_type_detection=disable_content_type_detection,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_game(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
game_short_name: str,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_game(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_game`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_game(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
game_short_name=game_short_name,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_invoice(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
title: str,
|
|
|
|
description: str,
|
|
|
|
payload: str,
|
2024-06-03 19:39:31 +02:00
|
|
|
provider_token: Optional[str],
|
2020-12-30 13:41:07 +01:00
|
|
|
currency: str,
|
2023-01-01 14:24:30 +01:00
|
|
|
prices: Sequence["LabeledPrice"],
|
2023-05-18 07:57:59 +02:00
|
|
|
start_parameter: Optional[str] = None,
|
|
|
|
photo_url: Optional[str] = None,
|
|
|
|
photo_size: Optional[int] = None,
|
|
|
|
photo_width: Optional[int] = None,
|
|
|
|
photo_height: Optional[int] = None,
|
|
|
|
need_name: Optional[bool] = None,
|
|
|
|
need_phone_number: Optional[bool] = None,
|
|
|
|
need_email: Optional[bool] = None,
|
|
|
|
need_shipping_address: Optional[bool] = None,
|
|
|
|
is_flexible: Optional[bool] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = None,
|
|
|
|
provider_data: Optional[Union[str, object]] = None,
|
|
|
|
send_phone_number_to_provider: Optional[bool] = None,
|
|
|
|
send_email_to_provider: Optional[bool] = None,
|
|
|
|
max_tip_amount: Optional[int] = None,
|
|
|
|
suggested_tip_amounts: Optional[Sequence[int]] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_invoice(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_invoice`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2021-04-30 10:09:21 +02:00
|
|
|
Warning:
|
2022-05-06 17:15:23 +02:00
|
|
|
As of API 5.2 :paramref:`start_parameter <telegram.Bot.send_invoice.start_parameter>`
|
|
|
|
is an optional argument and therefore the
|
2022-02-09 17:30:16 +01:00
|
|
|
order of the arguments had to be changed. Use keyword arguments to make sure that the
|
2021-04-30 10:09:21 +02:00
|
|
|
arguments are passed correctly.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2021-04-30 10:09:21 +02:00
|
|
|
.. versionchanged:: 13.5
|
2022-05-06 17:15:23 +02:00
|
|
|
As of Bot API 5.2, the parameter
|
|
|
|
:paramref:`start_parameter <telegram.Bot.send_invoice.start_parameter>` is optional.
|
2021-04-30 10:09:21 +02:00
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_invoice(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
title=title,
|
|
|
|
description=description,
|
|
|
|
payload=payload,
|
|
|
|
provider_token=provider_token,
|
|
|
|
currency=currency,
|
|
|
|
prices=prices,
|
2021-04-30 10:09:21 +02:00
|
|
|
start_parameter=start_parameter,
|
2020-12-30 13:41:07 +01:00
|
|
|
photo_url=photo_url,
|
|
|
|
photo_size=photo_size,
|
|
|
|
photo_width=photo_width,
|
|
|
|
photo_height=photo_height,
|
|
|
|
need_name=need_name,
|
|
|
|
need_phone_number=need_phone_number,
|
|
|
|
need_email=need_email,
|
|
|
|
need_shipping_address=need_shipping_address,
|
|
|
|
is_flexible=is_flexible,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
|
|
|
provider_data=provider_data,
|
|
|
|
send_phone_number_to_provider=send_phone_number_to_provider,
|
|
|
|
send_email_to_provider=send_email_to_provider,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2021-04-30 10:09:21 +02:00
|
|
|
max_tip_amount=max_tip_amount,
|
|
|
|
suggested_tip_amounts=suggested_tip_amounts,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
latitude: Optional[float] = None,
|
|
|
|
longitude: Optional[float] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
live_period: Optional[int] = None,
|
|
|
|
horizontal_accuracy: Optional[float] = None,
|
|
|
|
heading: Optional[int] = None,
|
|
|
|
proximity_alert_radius: Optional[int] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
location: Optional["Location"] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_location(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_location`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
latitude=latitude,
|
|
|
|
longitude=longitude,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
location=location,
|
|
|
|
live_period=live_period,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
horizontal_accuracy=horizontal_accuracy,
|
|
|
|
heading=heading,
|
|
|
|
proximity_alert_radius=proximity_alert_radius,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_animation(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
animation: Union[FileInput, "Animation"],
|
2023-05-18 07:57:59 +02:00
|
|
|
duration: Optional[int] = None,
|
|
|
|
width: Optional[int] = None,
|
|
|
|
height: Optional[int] = None,
|
|
|
|
caption: Optional[str] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
has_spoiler: Optional[bool] = None,
|
|
|
|
thumbnail: Optional[FileInput] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
|
|
|
show_caption_above_media: Optional[bool] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_animation(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_animation`.
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_animation(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
animation=animation,
|
|
|
|
duration=duration,
|
|
|
|
width=width,
|
|
|
|
height=height,
|
|
|
|
caption=caption,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2023-01-01 17:00:49 +01:00
|
|
|
has_spoiler=has_spoiler,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail=thumbnail,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_sticker(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
sticker: Union[FileInput, "Sticker"],
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
emoji: Optional[str] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_sticker(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_sticker`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_sticker(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
sticker=sticker,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2023-03-25 11:47:26 +01:00
|
|
|
emoji=emoji,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_video(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
video: Union[FileInput, "Video"],
|
2023-05-18 07:57:59 +02:00
|
|
|
duration: Optional[int] = None,
|
|
|
|
caption: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
width: Optional[int] = None,
|
|
|
|
height: Optional[int] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
supports_streaming: Optional[bool] = None,
|
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
has_spoiler: Optional[bool] = None,
|
|
|
|
thumbnail: Optional[FileInput] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
|
|
|
show_caption_above_media: Optional[bool] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_video(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_video`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_video(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
video=video,
|
|
|
|
duration=duration,
|
|
|
|
caption=caption,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
width=width,
|
|
|
|
height=height,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
supports_streaming=supports_streaming,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail=thumbnail,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2023-01-01 17:00:49 +01:00
|
|
|
has_spoiler=has_spoiler,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_venue(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
latitude: Optional[float] = None,
|
|
|
|
longitude: Optional[float] = None,
|
|
|
|
title: Optional[str] = None,
|
|
|
|
address: Optional[str] = None,
|
|
|
|
foursquare_id: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
foursquare_type: Optional[str] = None,
|
|
|
|
google_place_id: Optional[str] = None,
|
|
|
|
google_place_type: Optional[str] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
venue: Optional["Venue"] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_venue(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_venue`.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_venue(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
latitude=latitude,
|
|
|
|
longitude=longitude,
|
|
|
|
title=title,
|
|
|
|
address=address,
|
|
|
|
foursquare_id=foursquare_id,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
venue=venue,
|
|
|
|
foursquare_type=foursquare_type,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
google_place_id=google_place_id,
|
|
|
|
google_place_type=google_place_type,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_video_note(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
video_note: Union[FileInput, "VideoNote"],
|
2023-05-18 07:57:59 +02:00
|
|
|
duration: Optional[int] = None,
|
|
|
|
length: Optional[int] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
thumbnail: Optional[FileInput] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_video_note(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_video_note`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_video_note(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
video_note=video_note,
|
|
|
|
duration=duration,
|
|
|
|
length=length,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail=thumbnail,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_voice(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
voice: Union[FileInput, "Voice"],
|
2023-05-18 07:57:59 +02:00
|
|
|
duration: Optional[int] = None,
|
|
|
|
caption: Optional[str] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
filename: Optional[str] = None,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-11-26 16:44:18 +01:00
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2018-02-18 16:49:52 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_voice(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_voice`.
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_voice(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
voice=voice,
|
|
|
|
duration=duration,
|
|
|
|
caption=caption,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
parse_mode=parse_mode,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
filename=filename,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_poll(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
question: str,
|
2024-05-20 15:25:25 +02:00
|
|
|
options: Sequence[Union[str, "InputPollOption"]],
|
2023-05-18 07:57:59 +02:00
|
|
|
is_anonymous: Optional[bool] = None,
|
|
|
|
type: Optional[str] = None,
|
|
|
|
allows_multiple_answers: Optional[bool] = None,
|
2023-06-29 18:17:47 +02:00
|
|
|
correct_option_id: Optional[CorrectOptionID] = None,
|
2023-05-18 07:57:59 +02:00
|
|
|
is_closed: Optional[bool] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
|
|
|
explanation: Optional[str] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
explanation_parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
open_period: Optional[int] = None,
|
|
|
|
close_date: Optional[Union[int, datetime]] = None,
|
|
|
|
explanation_entities: Optional[Sequence["MessageEntity"]] = None,
|
2022-01-07 17:02:23 +01:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id: Optional[str] = None,
|
2024-05-20 15:25:25 +02:00
|
|
|
question_parse_mode: ODVInput[str] = DEFAULT_NONE,
|
|
|
|
question_entities: Optional[Sequence["MessageEntity"]] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id: Optional[str] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "Message":
|
2020-05-27 21:59:49 +02:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.send_poll(update.effective_user.id, *args, **kwargs)
|
2020-12-30 13:41:07 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.send_poll`.
|
2020-05-27 21:59:49 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-05-27 21:59:49 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().send_poll(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
question=question,
|
|
|
|
options=options,
|
|
|
|
is_anonymous=is_anonymous,
|
|
|
|
type=type, # pylint=pylint,
|
|
|
|
allows_multiple_answers=allows_multiple_answers,
|
|
|
|
correct_option_id=correct_option_id,
|
|
|
|
is_closed=is_closed,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
explanation=explanation,
|
|
|
|
explanation_parse_mode=explanation_parse_mode,
|
|
|
|
open_period=open_period,
|
|
|
|
close_date=close_date,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
explanation_entities=explanation_entities,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-04-12 11:58:25 +02:00
|
|
|
business_connection_id=business_connection_id,
|
2024-05-20 15:25:25 +02:00
|
|
|
question_parse_mode=question_parse_mode,
|
|
|
|
question_entities=question_entities,
|
2024-06-03 19:39:31 +02:00
|
|
|
message_effect_id=message_effect_id,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def send_copy(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
from_chat_id: Union[str, int],
|
2021-03-14 16:42:03 +01:00
|
|
|
message_id: int,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption: Optional[str] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media: Optional[bool] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "MessageId":
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.copy_message(chat_id=update.effective_user.id, *args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.copy_message`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().copy_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=self.id,
|
|
|
|
from_chat_id=from_chat_id,
|
|
|
|
message_id=message_id,
|
|
|
|
caption=caption,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def copy_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
2021-03-14 16:42:03 +01:00
|
|
|
message_id: int,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption: Optional[str] = None,
|
2021-02-19 19:07:48 +01:00
|
|
|
parse_mode: ODVInput[str] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption_entities: Optional[Sequence["MessageEntity"]] = None,
|
2023-10-25 21:53:43 +02:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional[ReplyMarkup] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
message_thread_id: Optional[int] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters: Optional["ReplyParameters"] = None,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media: Optional[bool] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
reply_to_message_id: Optional[int] = None,
|
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-12-30 13:41:07 +01:00
|
|
|
) -> "MessageId":
|
2020-11-29 16:20:46 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.copy_message(from_chat_id=update.effective_user.id, *args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.copy_message`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
2024-03-06 14:45:50 +01:00
|
|
|
:class:`telegram.MessageId`: On success, returns the MessageId of the sent message.
|
2020-11-29 16:20:46 +01:00
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().copy_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
from_chat_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
message_id=message_id,
|
|
|
|
caption=caption,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
2024-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
allow_sending_without_reply=allow_sending_without_reply,
|
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
2020-12-30 13:41:07 +01:00
|
|
|
api_kwargs=api_kwargs,
|
2022-01-03 08:13:33 +01:00
|
|
|
protect_content=protect_content,
|
2022-11-22 10:43:50 +01:00
|
|
|
message_thread_id=message_thread_id,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
2021-11-08 19:02:20 +01:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
async def send_copies(
|
|
|
|
self,
|
|
|
|
from_chat_id: Union[str, int],
|
|
|
|
message_ids: Sequence[int],
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
remove_caption: Optional[bool] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> Tuple["MessageId", ...]:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.copy_messages(chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.copy_messages`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`copy_message`, :meth:`send_copy`, :meth:`copy_messages`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple[:class:`telegram.MessageId`]: On success, a tuple of :class:`~telegram.MessageId`
|
|
|
|
of the sent messages is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().copy_messages(
|
|
|
|
chat_id=self.id,
|
|
|
|
from_chat_id=from_chat_id,
|
|
|
|
message_ids=message_ids,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
remove_caption=remove_caption,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def copy_messages(
|
|
|
|
self,
|
|
|
|
chat_id: Union[str, int],
|
|
|
|
message_ids: Sequence[int],
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
remove_caption: Optional[bool] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> Tuple["MessageId", ...]:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.copy_messages(from_chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.copy_messages`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`copy_message`, :meth:`send_copy`, :meth:`send_copies`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple[:class:`telegram.MessageId`]: On success, a tuple of :class:`~telegram.MessageId`
|
|
|
|
of the sent messages is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().copy_messages(
|
|
|
|
from_chat_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
message_ids=message_ids,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
remove_caption=remove_caption,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def forward_from(
|
|
|
|
self,
|
|
|
|
from_chat_id: Union[str, int],
|
|
|
|
message_id: int,
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> "Message":
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.forward_message(chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.forward_message`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`forward_to`, :meth:`forward_messages_from`, :meth:`forward_messages_to`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().forward_message(
|
|
|
|
chat_id=self.id,
|
|
|
|
from_chat_id=from_chat_id,
|
|
|
|
message_id=message_id,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def forward_to(
|
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
|
|
|
message_id: int,
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> "Message":
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.forward_message(from_chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.forward_message`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`forward_from`, :meth:`forward_messages_from`,
|
|
|
|
:meth:`forward_messages_to`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, instance representing the message posted.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().forward_message(
|
|
|
|
from_chat_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
message_id=message_id,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def forward_messages_from(
|
|
|
|
self,
|
|
|
|
from_chat_id: Union[str, int],
|
|
|
|
message_ids: Sequence[int],
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> Tuple["MessageId", ...]:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.forward_messages(chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.forward_messages`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`forward_to`, :meth:`forward_from`, :meth:`forward_messages_to`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple[:class:`telegram.MessageId`]: On success, a tuple of :class:`~telegram.MessageId`
|
|
|
|
of sent messages is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().forward_messages(
|
|
|
|
chat_id=self.id,
|
|
|
|
from_chat_id=from_chat_id,
|
|
|
|
message_ids=message_ids,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def forward_messages_to(
|
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
|
|
|
message_ids: Sequence[int],
|
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
protect_content: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
message_thread_id: Optional[int] = None,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> Tuple["MessageId", ...]:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.forward_messages(from_chat_id=update.effective_user.id, *argss, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Bot.forward_messages`.
|
|
|
|
|
|
|
|
.. seealso:: :meth:`forward_from`, :meth:`forward_to`, :meth:`forward_messages_from`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple[:class:`telegram.MessageId`]: On success, a tuple of :class:`~telegram.MessageId`
|
|
|
|
of sent messages is returned.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return await self.get_bot().forward_messages(
|
|
|
|
from_chat_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
message_ids=message_ids,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
protect_content=protect_content,
|
|
|
|
message_thread_id=message_thread_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def approve_join_request(
|
2021-11-08 19:02:20 +01:00
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2021-11-08 19:02:20 +01:00
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.approve_chat_join_request(user_id=update.effective_user.id, *args, **kwargs)
|
2021-11-08 19:02:20 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.approve_chat_join_request`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2021-11-08 19:02:20 +01:00
|
|
|
.. versionadded:: 13.8
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().approve_chat_join_request(
|
|
|
|
user_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
2021-11-08 19:02:20 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def decline_join_request(
|
2021-11-08 19:02:20 +01:00
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-04-24 12:38:09 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2021-11-08 19:02:20 +01:00
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.decline_chat_join_request(user_id=update.effective_user.id, *args, **kwargs)
|
2021-11-08 19:02:20 +01:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.decline_chat_join_request`.
|
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2021-11-08 19:02:20 +01:00
|
|
|
.. versionadded:: 13.8
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().decline_chat_join_request(
|
|
|
|
user_id=self.id,
|
|
|
|
chat_id=chat_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
2021-11-08 19:02:20 +01:00
|
|
|
)
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
async def set_menu_button(
|
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
menu_button: Optional[MenuButton] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-05-03 18:21:50 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2022-05-03 18:21:50 +02:00
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
await bot.set_chat_menu_button(chat_id=update.effective_user.id, *argss, **kwargs)
|
2022-05-03 18:21:50 +02:00
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.set_chat_menu_button`.
|
|
|
|
|
2022-08-27 11:46:51 +02:00
|
|
|
.. seealso:: :meth:`get_menu_button`
|
2022-05-03 18:21:50 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
"""
|
|
|
|
return await self.get_bot().set_chat_menu_button(
|
|
|
|
chat_id=self.id,
|
|
|
|
menu_button=menu_button,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def get_menu_button(
|
|
|
|
self,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2022-05-03 18:21:50 +02:00
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2022-05-03 18:21:50 +02:00
|
|
|
) -> MenuButton:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.get_chat_menu_button(chat_id=update.effective_user.id, *args, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.get_chat_menu_button`.
|
|
|
|
|
2022-08-27 11:46:51 +02:00
|
|
|
.. seealso:: :meth:`set_menu_button`
|
2022-05-03 18:21:50 +02:00
|
|
|
|
2023-02-08 11:47:21 +01:00
|
|
|
Note:
|
|
|
|
|user_chat_id_note|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
.. versionadded:: 20.0
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.MenuButton`: On success, the current menu button is returned.
|
|
|
|
"""
|
|
|
|
return await self.get_bot().get_chat_menu_button(
|
|
|
|
chat_id=self.id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
async def get_chat_boosts(
|
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> "UserChatBoosts":
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.get_user_chat_boosts(user_id=update.effective_user.id, *args, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.get_user_chat_boosts`.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionadded:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:class:`telegram.UserChatBoosts`: On success, returns the boosts applied by the user.
|
|
|
|
"""
|
|
|
|
return await self.get_bot().get_user_chat_boosts(
|
|
|
|
chat_id=chat_id,
|
|
|
|
user_id=self.id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|
2024-06-03 19:39:31 +02:00
|
|
|
|
|
|
|
async def refund_star_payment(
|
|
|
|
self,
|
|
|
|
telegram_payment_charge_id: str,
|
|
|
|
*,
|
|
|
|
read_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
write_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
connect_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
pool_timeout: ODVInput[float] = DEFAULT_NONE,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
|
|
|
) -> bool:
|
|
|
|
"""Shortcut for::
|
|
|
|
|
|
|
|
await bot.refund_star_payment(user_id=update.effective_user.id, *args, **kwargs)
|
|
|
|
|
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.refund_star_payment`.
|
|
|
|
|
2024-06-07 16:52:22 +02:00
|
|
|
.. versionadded:: 21.3
|
2024-06-03 19:39:31 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
"""
|
|
|
|
return await self.get_bot().refund_star_payment(
|
|
|
|
user_id=self.id,
|
|
|
|
telegram_payment_charge_id=telegram_payment_charge_id,
|
|
|
|
read_timeout=read_timeout,
|
|
|
|
write_timeout=write_timeout,
|
|
|
|
connect_timeout=connect_timeout,
|
|
|
|
pool_timeout=pool_timeout,
|
|
|
|
api_kwargs=api_kwargs,
|
|
|
|
)
|