2016-04-12 06:23:52 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# 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-04-12 06:23:52 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# 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/].
|
2021-10-08 08:17:00 +02:00
|
|
|
# pylint: disable=redefined-builtin
|
2016-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram CallbackQuery"""
|
2023-06-29 18:17:47 +02:00
|
|
|
from typing import TYPE_CHECKING, Final, Optional, Sequence, Tuple, Union
|
2016-04-14 02:10:04 +02:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram import constants
|
|
|
|
from telegram._files.location import Location
|
2024-02-08 17:12:00 +01:00
|
|
|
from telegram._message import MaybeInaccessibleMessage, Message
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._telegramobject import TelegramObject
|
|
|
|
from telegram._user import User
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_NONE
|
2023-10-25 21:53:43 +02:00
|
|
|
from telegram._utils.types import JSONDict, ODVInput, ReplyMarkup
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2020-12-30 13:41:07 +01:00
|
|
|
from telegram import (
|
|
|
|
Bot,
|
|
|
|
GameHighScore,
|
|
|
|
InlineKeyboardMarkup,
|
|
|
|
InputMedia,
|
2024-02-08 17:12:00 +01:00
|
|
|
LinkPreviewOptions,
|
2020-12-30 13:41:07 +01:00
|
|
|
MessageEntity,
|
2022-05-05 09:27:54 +02:00
|
|
|
MessageId,
|
2024-02-08 17:12:00 +01:00
|
|
|
ReplyParameters,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2016-04-14 02:10:04 +02:00
|
|
|
|
|
|
|
class CallbackQuery(TelegramObject):
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
|
|
|
This object represents an incoming callback query from a callback button in an inline keyboard.
|
|
|
|
|
|
|
|
If the button that originated the query was attached to a message sent by the bot, the field
|
|
|
|
:attr:`message` will be present. If the button was attached to a message sent via the bot (in
|
|
|
|
inline mode), the field :attr:`inline_message_id` will be present.
|
|
|
|
|
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.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Note:
|
2023-02-05 18:09:55 +01:00
|
|
|
* In Python :keyword:`from` is a reserved word. Use :paramref:`from_user` instead.
|
2017-08-02 04:56:07 +02:00
|
|
|
* Exactly one of the fields :attr:`data` or :attr:`game_short_name` will be present.
|
2020-12-30 15:59:50 +01:00
|
|
|
* After the user presses an inline button, Telegram clients will display a progress bar
|
|
|
|
until you call :attr:`answer`. It is, therefore, necessary to react
|
|
|
|
by calling :attr:`telegram.Bot.answer_callback_query` even if no notification to the user
|
|
|
|
is needed (e.g., without specifying any of the optional parameters).
|
2022-10-07 10:18:08 +02:00
|
|
|
* If you're using :attr:`telegram.ext.ExtBot.callback_data_cache`, :attr:`data` may be
|
2022-02-09 17:30:16 +01:00
|
|
|
an instance
|
2021-06-06 11:48:48 +02:00
|
|
|
of :class:`telegram.ext.InvalidCallbackData`. This will be the case, if the data
|
|
|
|
associated with the button triggering the :class:`telegram.CallbackQuery` was already
|
|
|
|
deleted or if :attr:`data` was manipulated by a malicious client.
|
|
|
|
|
|
|
|
.. versionadded:: 13.6
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Args:
|
|
|
|
id (:obj:`str`): Unique identifier for this query.
|
2017-07-28 16:41:25 +02:00
|
|
|
from_user (:class:`telegram.User`): Sender.
|
2020-03-28 15:52:37 +01:00
|
|
|
chat_instance (:obj:`str`): Global identifier, uniquely corresponding to the chat to which
|
|
|
|
the message with the callback button was sent. Useful for high scores in games.
|
2024-02-08 17:12:00 +01:00
|
|
|
message (:class:`telegram.MaybeInaccessibleMessage`, optional): Message sent by the bot
|
|
|
|
with the callback button that originated the query.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Accept objects of type :class:`telegram.MaybeInaccessibleMessage` since Bot API 7.0.
|
2022-06-09 17:08:54 +02:00
|
|
|
data (:obj:`str`, optional): Data associated with the callback button. Be aware that the
|
|
|
|
message, which originated the query, can contain no callback buttons with this data.
|
2020-03-28 15:52:37 +01:00
|
|
|
inline_message_id (:obj:`str`, optional): Identifier of the message sent via the bot in
|
|
|
|
inline mode, that originated the query.
|
2017-07-23 22:33:08 +02:00
|
|
|
game_short_name (:obj:`str`, optional): Short name of a Game to be returned, serves as
|
2023-01-01 16:24:00 +01:00
|
|
|
the unique identifier for the game.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
|
|
|
id (:obj:`str`): Unique identifier for this query.
|
|
|
|
from_user (:class:`telegram.User`): Sender.
|
|
|
|
chat_instance (:obj:`str`): Global identifier, uniquely corresponding to the chat to which
|
2023-01-01 16:24:00 +01:00
|
|
|
the message with the callback button was sent. Useful for high scores in games.
|
2024-02-08 17:12:00 +01:00
|
|
|
message (:class:`telegram.MaybeInaccessibleMessage`): Optional. Message sent by the bot
|
|
|
|
with the callback button that originated the query.
|
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Objects maybe be of type :class:`telegram.MaybeInaccessibleMessage` since Bot API
|
|
|
|
7.0.
|
2021-06-06 11:48:48 +02:00
|
|
|
data (:obj:`str` | :obj:`object`): Optional. Data associated with the callback button.
|
2023-01-01 16:24:00 +01:00
|
|
|
Be aware that the message, which originated the query, can contain no callback buttons
|
|
|
|
with this data.
|
2022-06-09 17:08:54 +02:00
|
|
|
|
|
|
|
Tip:
|
|
|
|
The value here is the same as the value passed in
|
|
|
|
:paramref:`telegram.InlineKeyboardButton.callback_data`.
|
2020-12-30 15:59:50 +01:00
|
|
|
inline_message_id (:obj:`str`): Optional. Identifier of the message sent via the bot in
|
2023-01-01 16:24:00 +01:00
|
|
|
inline mode, that originated the query.
|
|
|
|
game_short_name (:obj:`str`): Optional. Short name of a Game to be returned, serves as
|
|
|
|
the unique identifier for the game.
|
2022-10-07 11:51:53 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2016-04-14 02:10:04 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = (
|
|
|
|
"chat_instance",
|
2024-02-05 19:24:00 +01:00
|
|
|
"data",
|
2021-05-29 16:18:16 +02:00
|
|
|
"from_user",
|
2024-02-05 19:24:00 +01:00
|
|
|
"game_short_name",
|
|
|
|
"id",
|
2021-05-29 16:18:16 +02:00
|
|
|
"inline_message_id",
|
2024-02-05 19:24:00 +01:00
|
|
|
"message",
|
2021-05-29 16:18:16 +02:00
|
|
|
)
|
|
|
|
|
2016-10-19 12:35:50 +02:00
|
|
|
def __init__(
|
2020-11-05 18:12:01 +01:00
|
|
|
self,
|
2022-10-07 11:51:53 +02:00
|
|
|
id: str,
|
2020-10-06 19:28:40 +02:00
|
|
|
from_user: User,
|
|
|
|
chat_instance: str,
|
2024-02-08 17:12:00 +01:00
|
|
|
message: Optional[MaybeInaccessibleMessage] = None,
|
2023-05-18 07:57:59 +02:00
|
|
|
data: Optional[str] = None,
|
|
|
|
inline_message_id: Optional[str] = None,
|
|
|
|
game_short_name: Optional[str] = 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)
|
2016-04-14 02:10:04 +02:00
|
|
|
# Required
|
2023-09-09 23:12:30 +02:00
|
|
|
self.id: str = id
|
2023-02-02 18:55:07 +01:00
|
|
|
self.from_user: User = from_user
|
|
|
|
self.chat_instance: str = chat_instance
|
2016-04-14 02:10:04 +02:00
|
|
|
# Optionals
|
2024-02-08 17:12:00 +01:00
|
|
|
self.message: Optional[MaybeInaccessibleMessage] = message
|
2023-02-02 18:55:07 +01:00
|
|
|
self.data: Optional[str] = data
|
|
|
|
self.inline_message_id: Optional[str] = inline_message_id
|
|
|
|
self.game_short_name: Optional[str] = game_short_name
|
2016-04-14 02:10:04 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
self._id_attrs = (self.id,)
|
2017-08-01 22:07:12 +02:00
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
2020-10-06 19:28:40 +02:00
|
|
|
def de_json(cls, data: Optional[JSONDict], bot: "Bot") -> Optional["CallbackQuery"]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""See :meth:`telegram.TelegramObject.de_json`."""
|
|
|
|
data = cls._parse_data(data)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2016-04-14 02:10:04 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
data["from_user"] = User.de_json(data.pop("from", None), bot)
|
2020-07-19 17:47:26 +02:00
|
|
|
data["message"] = Message.de_json(data.get("message"), bot)
|
2016-04-14 02:10:04 +02:00
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
return super().de_json(data=data, bot=bot)
|
2016-05-30 15:59:45 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def answer(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
text: Optional[str] = None,
|
|
|
|
show_alert: Optional[bool] = None,
|
|
|
|
url: Optional[str] = None,
|
|
|
|
cache_time: 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
|
|
|
) -> bool:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Shortcut for::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await bot.answer_callback_query(update.callback_query.id, *args, **kwargs)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
|
|
|
:meth:`telegram.Bot.answer_callback_query`.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Returns:
|
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
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().answer_callback_query(
|
2020-12-30 13:41:07 +01:00
|
|
|
callback_query_id=self.id,
|
|
|
|
text=text,
|
|
|
|
show_alert=show_alert,
|
|
|
|
url=url,
|
|
|
|
cache_time=cache_time,
|
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-02-08 17:12:00 +01:00
|
|
|
def _get_message(self, action: str = "edit") -> Message:
|
|
|
|
"""Helper method to get the message for the shortcut methods. Must be called only
|
|
|
|
if :attr:`inline_message_id` is *not* set.
|
|
|
|
"""
|
|
|
|
if not isinstance(self.message, Message):
|
|
|
|
raise TypeError(f"Cannot {action} an inaccessible message")
|
|
|
|
return self.message
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def edit_message_text(
|
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-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = None,
|
|
|
|
entities: Optional[Sequence["MessageEntity"]] = None,
|
2024-02-08 17:12:00 +01:00
|
|
|
link_preview_options: ODVInput["LinkPreviewOptions"] = DEFAULT_NONE,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2024-02-25 10:34:47 +01:00
|
|
|
disable_web_page_preview: Optional[bool] = 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
|
|
|
) -> Union[Message, bool]:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Shortcut for either::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.edit_text(*args, **kwargs)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.edit_message_text(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs,
|
|
|
|
)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.edit_message_text` and :meth:`telegram.Message.edit_text`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2016-09-25 16:03:06 +02:00
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().edit_message_text(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_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
|
|
|
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,
|
|
|
|
entities=entities,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2019-02-13 11:37:13 +01:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().edit_text(
|
2020-12-30 13:41:07 +01:00
|
|
|
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
|
|
|
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,
|
|
|
|
entities=entities,
|
|
|
|
)
|
2016-09-25 16:03:06 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def edit_message_caption(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
caption: Optional[str] = None,
|
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = 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,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media: Optional[bool] = 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-10-06 19:28:40 +02:00
|
|
|
) -> Union[Message, bool]:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Shortcut for either::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.edit_caption(*args, **kwargs)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.edit_message_caption(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs,
|
|
|
|
)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.edit_message_caption` and :meth:`telegram.Message.edit_caption`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2016-09-25 16:03:06 +02:00
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().edit_message_caption(
|
2020-12-30 13:41:07 +01:00
|
|
|
caption=caption,
|
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
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,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media=show_caption_above_media,
|
2019-02-13 11:37:13 +01:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().edit_caption(
|
2020-12-30 13:41:07 +01:00
|
|
|
caption=caption,
|
|
|
|
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,
|
|
|
|
caption_entities=caption_entities,
|
2024-06-03 19:39:31 +02:00
|
|
|
show_caption_above_media=show_caption_above_media,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
2016-09-25 16:03:06 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def edit_message_reply_markup(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = 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-10-06 19:28:40 +02:00
|
|
|
) -> Union[Message, bool]:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Shortcut for either::
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.edit_reply_markup(*args, **kwargs)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.edit_message_reply_markup(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
2020-10-31 16:33:34 +01:00
|
|
|
)
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.edit_message_reply_markup` and
|
|
|
|
:meth:`telegram.Message.edit_reply_markup`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2017-09-01 08:43:08 +02:00
|
|
|
"""
|
2016-09-25 16:03:06 +02:00
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().edit_message_reply_markup(
|
2019-02-13 11:37:13 +01:00
|
|
|
reply_markup=reply_markup,
|
|
|
|
inline_message_id=self.inline_message_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,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2019-02-13 11:37:13 +01:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().edit_reply_markup(
|
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,
|
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def edit_message_media(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2021-08-29 18:17:06 +02:00
|
|
|
media: "InputMedia",
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = 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
|
|
|
) -> Union[Message, bool]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for either::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.edit_media(*args, **kwargs)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.edit_message_media(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.edit_message_media` and :meth:`telegram.Message.edit_media`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
2021-08-29 18:17:06 +02:00
|
|
|
:class:`telegram.Message`: On success, if edited message is not an inline message, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
"""
|
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().edit_message_media(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
media=media,
|
|
|
|
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,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().edit_media(
|
2020-12-30 13:41:07 +01:00
|
|
|
media=media,
|
|
|
|
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-04-24 12:38:09 +02:00
|
|
|
async def edit_message_live_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,
|
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = None,
|
|
|
|
horizontal_accuracy: Optional[float] = None,
|
|
|
|
heading: Optional[int] = None,
|
|
|
|
proximity_alert_radius: Optional[int] = None,
|
2024-05-20 15:25:25 +02:00
|
|
|
live_period: Optional[int] = None,
|
2022-05-18 17:18:44 +02:00
|
|
|
*,
|
2023-05-18 07:57:59 +02:00
|
|
|
location: Optional[Location] = 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
|
|
|
) -> Union[Message, bool]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for either::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.edit_live_location(*args, **kwargs)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.edit_message_live_location(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.edit_message_live_location` and
|
|
|
|
:meth:`telegram.Message.edit_live_location`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
"""
|
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().edit_message_live_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
latitude=latitude,
|
|
|
|
longitude=longitude,
|
|
|
|
location=location,
|
|
|
|
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,
|
|
|
|
horizontal_accuracy=horizontal_accuracy,
|
|
|
|
heading=heading,
|
|
|
|
proximity_alert_radius=proximity_alert_radius,
|
2024-05-20 15:25:25 +02:00
|
|
|
live_period=live_period,
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().edit_live_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
latitude=latitude,
|
|
|
|
longitude=longitude,
|
|
|
|
location=location,
|
|
|
|
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,
|
|
|
|
horizontal_accuracy=horizontal_accuracy,
|
|
|
|
heading=heading,
|
|
|
|
proximity_alert_radius=proximity_alert_radius,
|
2024-05-20 15:25:25 +02:00
|
|
|
live_period=live_period,
|
2020-12-30 13:41:07 +01:00
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def stop_message_live_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-05-18 07:57:59 +02:00
|
|
|
reply_markup: Optional["InlineKeyboardMarkup"] = 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
|
|
|
) -> Union[Message, bool]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for either::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.stop_live_location(*args, **kwargs)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.stop_message_live_location(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.stop_message_live_location` and
|
|
|
|
:meth:`telegram.Message.stop_live_location`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
"""
|
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().stop_message_live_location(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
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,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().stop_live_location(
|
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,
|
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def set_game_score(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-09-15 21:33:42 +02:00
|
|
|
user_id: int,
|
2020-12-30 13:41:07 +01:00
|
|
|
score: int,
|
2023-05-18 07:57:59 +02:00
|
|
|
force: Optional[bool] = None,
|
|
|
|
disable_edit_message: Optional[bool] = 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
|
|
|
) -> Union[Message, bool]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for either::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.set_game_score(*args, **kwargs)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.set_game_score(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2021-06-06 12:16:23 +02:00
|
|
|
:meth:`telegram.Bot.set_game_score` and :meth:`telegram.Message.set_game_score`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.Message`: On success, if edited message is sent by the bot, the
|
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
|
|
|
edited Message is returned, otherwise :obj:`True` is returned.
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
"""
|
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().set_game_score(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
user_id=user_id,
|
|
|
|
score=score,
|
|
|
|
force=force,
|
|
|
|
disable_edit_message=disable_edit_message,
|
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,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().set_game_score(
|
2020-12-30 13:41:07 +01:00
|
|
|
user_id=user_id,
|
|
|
|
score=score,
|
|
|
|
force=force,
|
|
|
|
disable_edit_message=disable_edit_message,
|
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-04-24 12:38:09 +02:00
|
|
|
async def get_game_high_scores(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2023-09-15 21:33:42 +02:00
|
|
|
user_id: int,
|
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,
|
2022-12-15 15:00:36 +01:00
|
|
|
) -> Tuple["GameHighScore", ...]:
|
2020-08-13 13:39:43 +02:00
|
|
|
"""Shortcut for either::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.get_game_high_score(*args, **kwargs)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await bot.get_game_high_scores(
|
|
|
|
inline_message_id=update.callback_query.inline_message_id, *args, **kwargs
|
|
|
|
)
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2020-12-30 13:41:07 +01:00
|
|
|
For the documentation of the arguments, please see
|
2022-02-09 17:30:16 +01:00
|
|
|
:meth:`telegram.Bot.get_game_high_scores` and
|
|
|
|
:meth:`telegram.Message.get_game_high_scores`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
Returns:
|
2022-12-15 15:00:36 +01:00
|
|
|
Tuple[:class:`telegram.GameHighScore`]
|
2020-08-13 13:39:43 +02:00
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-08-13 13:39:43 +02:00
|
|
|
"""
|
|
|
|
if self.inline_message_id:
|
2022-04-24 12:38:09 +02:00
|
|
|
return await self.get_bot().get_game_high_scores(
|
2020-12-30 13:41:07 +01:00
|
|
|
inline_message_id=self.inline_message_id,
|
|
|
|
user_id=user_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,
|
|
|
|
chat_id=None,
|
|
|
|
message_id=None,
|
2020-08-13 13:39:43 +02:00
|
|
|
)
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message().get_game_high_scores(
|
2020-12-30 13:41:07 +01:00
|
|
|
user_id=user_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-05 17:11:35 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def delete_message(
|
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-05 17:11:35 +01:00
|
|
|
"""Shortcut for::
|
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.delete(*args, **kwargs)
|
2020-11-05 17:11:35 +01:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Message.delete`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-11-05 17:11:35 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-11-05 17:11:35 +01:00
|
|
|
"""
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message(action="delete").delete(
|
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 pin_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
2021-02-19 19:07:48 +01:00
|
|
|
disable_notification: ODVInput[bool] = DEFAULT_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-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.pin(*args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Message.pin`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
2020-11-29 16:20:46 +01:00
|
|
|
"""
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message(action="pin").pin(
|
2020-12-30 13:41:07 +01:00
|
|
|
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,
|
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 unpin_message(
|
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-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.unpin(*args, **kwargs)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Message.unpin`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:obj:`bool`: On success, :obj:`True` is returned.
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
2020-11-29 16:20:46 +01:00
|
|
|
"""
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message(action="unpin").unpin(
|
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 copy_message(
|
2020-12-30 13:41:07 +01:00
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
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
|
|
|
allow_sending_without_reply: ODVInput[bool] = DEFAULT_NONE,
|
|
|
|
reply_to_message_id: Optional[int] = 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-06-09 17:08:54 +02:00
|
|
|
await update.callback_query.message.copy(
|
2020-11-29 16:20:46 +01:00
|
|
|
from_chat_id=update.message.chat_id,
|
|
|
|
message_id=update.message.message_id,
|
|
|
|
*args,
|
2022-04-24 12:38:09 +02:00
|
|
|
**kwargs
|
|
|
|
)
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2022-06-09 17:08:54 +02:00
|
|
|
For the documentation of the arguments, please see :meth:`telegram.Message.copy`.
|
2020-12-30 13:41:07 +01:00
|
|
|
|
2024-02-08 18:36:28 +01:00
|
|
|
.. versionchanged:: 20.8
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises :exc:`TypeError` if :attr:`message` is not accessible.
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
Returns:
|
|
|
|
:class:`telegram.MessageId`: On success, returns the MessageId of the sent message.
|
|
|
|
|
2024-02-08 17:12:00 +01:00
|
|
|
Raises:
|
|
|
|
:exc:`TypeError` if :attr:`message` is not accessible.
|
2020-11-29 16:20:46 +01:00
|
|
|
"""
|
2024-02-08 17:12:00 +01:00
|
|
|
return await self._get_message(action="copy").copy(
|
2020-12-30 13:41:07 +01:00
|
|
|
chat_id=chat_id,
|
|
|
|
caption=caption,
|
|
|
|
parse_mode=parse_mode,
|
|
|
|
caption_entities=caption_entities,
|
|
|
|
disable_notification=disable_notification,
|
|
|
|
reply_to_message_id=reply_to_message_id,
|
|
|
|
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-02-08 17:12:00 +01:00
|
|
|
reply_parameters=reply_parameters,
|
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-01-07 21:27:51 +01:00
|
|
|
|
2024-02-05 19:24:00 +01:00
|
|
|
MAX_ANSWER_TEXT_LENGTH: Final[int] = (
|
|
|
|
constants.CallbackQueryLimit.ANSWER_CALLBACK_QUERY_TEXT_LENGTH
|
|
|
|
)
|
2021-01-07 21:27:51 +01:00
|
|
|
"""
|
2021-10-19 18:28:19 +02:00
|
|
|
:const:`telegram.constants.CallbackQueryLimit.ANSWER_CALLBACK_QUERY_TEXT_LENGTH`
|
2021-01-07 21:27:51 +01:00
|
|
|
|
|
|
|
.. versionadded:: 13.2
|
|
|
|
"""
|