2016-03-14 14:50:12 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# 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-03-14 14:50:12 +01: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/].
|
|
|
|
"""Extensions over the Telegram Bot API to facilitate bot making"""
|
|
|
|
|
2016-05-25 22:51:13 +02:00
|
|
|
__all__ = (
|
2022-08-26 06:50:03 +02:00
|
|
|
"AIORateLimiter",
|
2022-04-24 12:38:09 +02:00
|
|
|
"Application",
|
|
|
|
"ApplicationBuilder",
|
|
|
|
"ApplicationHandlerStop",
|
2022-08-26 06:50:03 +02:00
|
|
|
"BaseHandler",
|
2021-06-06 10:37:53 +02:00
|
|
|
"BasePersistence",
|
2022-08-26 06:50:03 +02:00
|
|
|
"BaseRateLimiter",
|
2023-06-02 18:17:08 +02:00
|
|
|
"BaseUpdateProcessor",
|
2021-06-06 10:37:53 +02:00
|
|
|
"CallbackContext",
|
2021-06-06 11:48:48 +02:00
|
|
|
"CallbackDataCache",
|
2016-05-25 22:51:13 +02:00
|
|
|
"CallbackQueryHandler",
|
2021-11-08 19:02:20 +01:00
|
|
|
"ChatJoinRequestHandler",
|
2021-06-06 10:37:53 +02:00
|
|
|
"ChatMemberHandler",
|
2016-05-25 23:57:29 +02:00
|
|
|
"ChosenInlineResultHandler",
|
|
|
|
"CommandHandler",
|
2021-06-06 10:37:53 +02:00
|
|
|
"ContextTypes",
|
|
|
|
"ConversationHandler",
|
|
|
|
"Defaults",
|
|
|
|
"DictPersistence",
|
2021-06-06 11:48:48 +02:00
|
|
|
"ExtBot",
|
2021-11-20 11:36:18 +01:00
|
|
|
"filters",
|
2016-05-25 23:57:29 +02:00
|
|
|
"InlineQueryHandler",
|
2021-06-06 11:48:48 +02:00
|
|
|
"InvalidCallbackData",
|
2021-06-06 10:37:53 +02:00
|
|
|
"Job",
|
|
|
|
"JobQueue",
|
|
|
|
"MessageHandler",
|
2021-08-13 16:18:42 +02:00
|
|
|
"PersistenceInput",
|
2021-06-06 10:37:53 +02:00
|
|
|
"PicklePersistence",
|
|
|
|
"PollAnswerHandler",
|
|
|
|
"PollHandler",
|
|
|
|
"PreCheckoutQueryHandler",
|
|
|
|
"PrefixHandler",
|
|
|
|
"ShippingQueryHandler",
|
2023-06-02 18:17:08 +02:00
|
|
|
"SimpleUpdateProcessor",
|
2020-07-28 09:10:32 +02:00
|
|
|
"StringCommandHandler",
|
|
|
|
"StringRegexHandler",
|
|
|
|
"TypeHandler",
|
2021-06-06 10:37:53 +02:00
|
|
|
"Updater",
|
2020-07-28 09:10:32 +02:00
|
|
|
)
|
2021-12-05 09:42:14 +01:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from . import filters
|
2022-08-26 06:50:03 +02:00
|
|
|
from ._aioratelimiter import AIORateLimiter
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._application import Application, ApplicationHandlerStop
|
|
|
|
from ._applicationbuilder import ApplicationBuilder
|
2023-06-25 15:08:26 +02:00
|
|
|
from ._basehandler import BaseHandler
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._basepersistence import BasePersistence, PersistenceInput
|
2022-08-26 06:50:03 +02:00
|
|
|
from ._baseratelimiter import BaseRateLimiter
|
2023-06-02 18:17:08 +02:00
|
|
|
from ._baseupdateprocessor import BaseUpdateProcessor, SimpleUpdateProcessor
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._callbackcontext import CallbackContext
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._callbackdatacache import CallbackDataCache, InvalidCallbackData
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._callbackqueryhandler import CallbackQueryHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._chatjoinrequesthandler import ChatJoinRequestHandler
|
|
|
|
from ._chatmemberhandler import ChatMemberHandler
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._choseninlineresulthandler import ChosenInlineResultHandler
|
2022-05-26 11:10:00 +02:00
|
|
|
from ._commandhandler import CommandHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._contexttypes import ContextTypes
|
|
|
|
from ._conversationhandler import ConversationHandler
|
|
|
|
from ._defaults import Defaults
|
|
|
|
from ._dictpersistence import DictPersistence
|
|
|
|
from ._extbot import ExtBot
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._inlinequeryhandler import InlineQueryHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._jobqueue import Job, JobQueue
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._messagehandler import MessageHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._picklepersistence import PicklePersistence
|
|
|
|
from ._pollanswerhandler import PollAnswerHandler
|
|
|
|
from ._pollhandler import PollHandler
|
|
|
|
from ._precheckoutqueryhandler import PreCheckoutQueryHandler
|
2022-05-26 11:10:00 +02:00
|
|
|
from ._prefixhandler import PrefixHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._shippingqueryhandler import ShippingQueryHandler
|
2021-12-05 09:42:14 +01:00
|
|
|
from ._stringcommandhandler import StringCommandHandler
|
|
|
|
from ._stringregexhandler import StringRegexHandler
|
|
|
|
from ._typehandler import TypeHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._updater import Updater
|