2015-07-08 21:58:18 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2023-01-01 21:31:29 +01:00
|
|
|
# Copyright (C) 2015-2023
|
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/].
|
2022-04-24 12:38:09 +02:00
|
|
|
"""This module contains classes that represent Telegram errors.
|
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionchanged:: 20.0
|
2022-04-24 12:38:09 +02:00
|
|
|
Replaced ``Unauthorized`` by :class:`Forbidden`.
|
|
|
|
"""
|
2021-12-05 09:42:14 +01:00
|
|
|
|
|
|
|
__all__ = (
|
2022-05-05 17:40:22 +02:00
|
|
|
"BadRequest",
|
|
|
|
"ChatMigrated",
|
|
|
|
"Conflict",
|
|
|
|
"Forbidden",
|
|
|
|
"InvalidToken",
|
|
|
|
"NetworkError",
|
|
|
|
"PassportDecryptionError",
|
|
|
|
"RetryAfter",
|
|
|
|
"TelegramError",
|
|
|
|
"TimedOut",
|
2021-12-05 09:42:14 +01:00
|
|
|
)
|
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
from typing import Optional, Tuple, Union
|
2015-08-22 04:15:29 +02:00
|
|
|
|
2015-12-25 22:28:07 +01:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def _lstrip_str(in_s: str, lstr: str) -> str:
|
2015-12-25 22:28:07 +01:00
|
|
|
"""
|
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
in_s (:obj:`str`): in string
|
|
|
|
lstr (:obj:`str`): substr to strip from left side
|
2015-12-25 22:28:07 +01: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:`str`: The stripped string.
|
2015-12-25 22:28:07 +01:00
|
|
|
|
|
|
|
"""
|
2023-03-25 19:18:04 +01:00
|
|
|
return in_s[len(lstr) :] if in_s.startswith(lstr) else in_s
|
2015-09-11 01:08:24 +02:00
|
|
|
|
2015-07-08 21:58:18 +02:00
|
|
|
|
|
|
|
class TelegramError(Exception):
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
"""
|
|
|
|
Base class for Telegram errors.
|
|
|
|
|
2023-05-07 14:50:41 +02:00
|
|
|
Tip:
|
|
|
|
Objects of this type can be serialized via Python's :mod:`pickle` module and pickled
|
|
|
|
objects from one version of PTB are usually loadable in future versions. However, we can
|
|
|
|
not guarantee that this compatibility will always be provided. At least a manual one-time
|
|
|
|
conversion of the data may be needed on major updates of the library.
|
|
|
|
|
2023-01-01 16:24:00 +01:00
|
|
|
.. seealso:: :wiki:`Exceptions, Warnings and Logging <Exceptions%2C-Warnings-and-Logging>`
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
"""
|
2021-05-27 09:38:17 +02:00
|
|
|
|
2022-05-05 17:40:22 +02:00
|
|
|
__slots__ = ("message",)
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __init__(self, message: str):
|
2020-06-15 18:20:51 +02:00
|
|
|
super().__init__()
|
2015-09-07 20:53:09 +02:00
|
|
|
|
2022-05-05 17:40:22 +02:00
|
|
|
msg = _lstrip_str(message, "Error: ")
|
|
|
|
msg = _lstrip_str(msg, "[Error]: ")
|
|
|
|
msg = _lstrip_str(msg, "Bad Request: ")
|
2015-12-25 22:28:07 +01:00
|
|
|
if msg != message:
|
|
|
|
# api_error - capitalize the msg...
|
|
|
|
msg = msg.capitalize()
|
2023-02-02 18:55:07 +01:00
|
|
|
self.message: str = msg
|
2015-09-07 20:53:09 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __str__(self) -> str:
|
2021-10-30 11:00:12 +02:00
|
|
|
return self.message
|
2016-01-23 23:26:27 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def __repr__(self) -> str:
|
|
|
|
return f"{self.__class__.__name__}('{self.message}')"
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __reduce__(self) -> Tuple[type, Tuple[str]]:
|
2020-10-04 18:15:36 +02:00
|
|
|
return self.__class__, (self.message,)
|
|
|
|
|
2016-01-23 23:26:27 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
class Forbidden(TelegramError):
|
|
|
|
"""Raised when the bot has not enough rights to perform the requested action.
|
|
|
|
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
Examples:
|
|
|
|
:any:`Raw API Bot <examples.rawapibot>`
|
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionchanged:: 20.0
|
2022-04-24 12:38:09 +02:00
|
|
|
This class was previously named ``Unauthorized``.
|
|
|
|
"""
|
2016-01-23 23:26:27 +01:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2016-01-23 23:26:27 +01:00
|
|
|
|
|
|
|
class InvalidToken(TelegramError):
|
2022-04-24 12:38:09 +02:00
|
|
|
"""Raised when the token is invalid.
|
2021-05-27 09:38:17 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
Args:
|
|
|
|
message (:obj:`str`, optional): Any additional information about the exception.
|
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionadded:: 20.0
|
2022-04-24 12:38:09 +02:00
|
|
|
"""
|
|
|
|
|
2022-08-03 08:16:48 +02:00
|
|
|
__slots__ = ()
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, message: Optional[str] = None) -> None:
|
2022-08-03 08:16:48 +02:00
|
|
|
super().__init__("Invalid token" if message is None else message)
|
2020-10-04 18:15:36 +02:00
|
|
|
|
2016-01-23 23:26:27 +01:00
|
|
|
|
2016-05-26 02:24:29 +02:00
|
|
|
class NetworkError(TelegramError):
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
"""Base class for exceptions due to networking errors.
|
|
|
|
|
2023-07-18 12:02:13 +02:00
|
|
|
Tip:
|
|
|
|
This exception (and its subclasses) usually originates from the networking backend
|
|
|
|
used by :class:`~telegram.request.HTTPXRequest`, or a custom implementation of
|
|
|
|
:class:`~telegram.request.BaseRequest`. In this case, the original exception can be
|
|
|
|
accessed via the ``__cause__``
|
|
|
|
`attribute <https://docs.python.org/3/library/exceptions.html#exception-context>`_.
|
|
|
|
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
Examples:
|
|
|
|
:any:`Raw API Bot <examples.rawapibot>`
|
|
|
|
"""
|
2016-05-26 02:15:17 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2016-05-26 02:15:17 +02:00
|
|
|
|
2016-05-26 03:09:18 +02:00
|
|
|
class BadRequest(NetworkError):
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Raised when Telegram could not process the request correctly."""
|
2016-01-23 23:26:27 +01:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2016-01-23 23:26:27 +01:00
|
|
|
|
|
|
|
class TimedOut(NetworkError):
|
2022-04-24 12:38:09 +02:00
|
|
|
"""Raised when a request took too long to finish.
|
2021-05-27 09:38:17 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
Args:
|
|
|
|
message (:obj:`str`, optional): Any additional information about the exception.
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionadded:: 20.0
|
2022-04-24 12:38:09 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = ()
|
2016-07-25 20:50:33 +02:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, message: Optional[str] = None) -> None:
|
2022-05-05 17:40:22 +02:00
|
|
|
super().__init__(message or "Timed out")
|
2020-10-04 18:15:36 +02:00
|
|
|
|
2016-07-25 20:50:33 +02:00
|
|
|
|
|
|
|
class ChatMigrated(TelegramError):
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2021-05-27 09:38:17 +02:00
|
|
|
Raised when the requested group chat migrated to supergroup and has a new chat id.
|
|
|
|
|
2023-01-01 16:24:00 +01:00
|
|
|
.. seealso::
|
|
|
|
:wiki:`Storing Bot, User and Chat Related Data <Storing-bot%2C-user-and-chat-related-data>`
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Args:
|
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
|
|
|
new_chat_id (:obj:`int`): The new chat id of the group.
|
2016-07-25 20:50:33 +02:00
|
|
|
|
2022-05-26 19:16:30 +02:00
|
|
|
Attributes:
|
|
|
|
new_chat_id (:obj:`int`): The new chat id of the group.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2016-07-25 20:50:33 +02:00
|
|
|
|
2022-05-05 17:40:22 +02:00
|
|
|
__slots__ = ("new_chat_id",)
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __init__(self, new_chat_id: int):
|
2022-05-05 17:40:22 +02:00
|
|
|
super().__init__(f"Group migrated to supergroup. New chat id: {new_chat_id}")
|
2023-02-02 18:55:07 +01:00
|
|
|
self.new_chat_id: int = new_chat_id
|
2016-10-04 00:27:45 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __reduce__(self) -> Tuple[type, Tuple[int]]: # type: ignore[override]
|
2020-10-04 18:15:36 +02:00
|
|
|
return self.__class__, (self.new_chat_id,)
|
|
|
|
|
2016-10-04 00:27:45 +02:00
|
|
|
|
|
|
|
class RetryAfter(TelegramError):
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2021-05-27 09:38:17 +02:00
|
|
|
Raised when flood limits where exceeded.
|
|
|
|
|
2022-05-26 19:16:30 +02:00
|
|
|
.. versionchanged:: 20.0
|
|
|
|
:attr:`retry_after` is now an integer to comply with the Bot API.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Args:
|
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
|
|
|
retry_after (:obj:`int`): Time in seconds, after which the bot can retry the request.
|
2016-10-04 00:27:45 +02:00
|
|
|
|
2022-05-26 19:16:30 +02:00
|
|
|
Attributes:
|
|
|
|
retry_after (:obj:`int`): Time in seconds, after which the bot can retry the request.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2016-10-04 00:27:45 +02:00
|
|
|
|
2022-05-05 17:40:22 +02:00
|
|
|
__slots__ = ("retry_after",)
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __init__(self, retry_after: int):
|
2022-05-26 19:16:30 +02:00
|
|
|
super().__init__(f"Flood control exceeded. Retry in {retry_after} seconds")
|
2023-02-02 18:55:07 +01:00
|
|
|
self.retry_after: int = retry_after
|
2018-10-29 22:08:52 +01:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __reduce__(self) -> Tuple[type, Tuple[float]]: # type: ignore[override]
|
2020-10-04 18:15:36 +02:00
|
|
|
return self.__class__, (self.retry_after,)
|
|
|
|
|
2018-10-29 22:08:52 +01:00
|
|
|
|
|
|
|
class Conflict(TelegramError):
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Raised when a long poll or webhook conflicts with another one."""
|
2018-10-29 22:08:52 +01:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ()
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __reduce__(self) -> Tuple[type, Tuple[str]]:
|
2020-10-04 18:15:36 +02:00
|
|
|
return self.__class__, (self.message,)
|
2021-08-11 17:27:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PassportDecryptionError(TelegramError):
|
2021-12-13 18:21:38 +01:00
|
|
|
"""Something went wrong with decryption.
|
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionchanged:: 20.0
|
2021-12-13 18:21:38 +01:00
|
|
|
This class was previously named ``TelegramDecryptionError`` and was available via
|
|
|
|
``telegram.TelegramDecryptionError``.
|
|
|
|
"""
|
2021-08-11 17:27:23 +02:00
|
|
|
|
2022-05-05 17:40:22 +02:00
|
|
|
__slots__ = ("_msg",)
|
2021-08-11 17:27:23 +02:00
|
|
|
|
|
|
|
def __init__(self, message: Union[str, Exception]):
|
|
|
|
super().__init__(f"PassportDecryptionError: {message}")
|
|
|
|
self._msg = str(message)
|
|
|
|
|
|
|
|
def __reduce__(self) -> Tuple[type, Tuple[str]]:
|
|
|
|
return self.__class__, (self._msg,)
|