2016-03-14 14:50:12 +01: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-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",
|
2024-04-12 11:58:25 +02:00
|
|
|
"BusinessConnectionHandler",
|
|
|
|
"BusinessMessagesDeletedHandler",
|
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",
|
2024-02-08 17:12:00 +01:00
|
|
|
"ChatBoostHandler",
|
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",
|
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",
|
2024-02-08 17:12:00 +01:00
|
|
|
"MessageReactionHandler",
|
2024-09-17 18:09:19 +02:00
|
|
|
"PaidMediaPurchasedHandler",
|
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",
|
2024-01-08 18:35:32 +01:00
|
|
|
"filters",
|
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
|
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
|
|
|
|
from ._contexttypes import ContextTypes
|
|
|
|
from ._defaults import Defaults
|
|
|
|
from ._dictpersistence import DictPersistence
|
|
|
|
from ._extbot import ExtBot
|
2024-01-15 20:15:33 +01:00
|
|
|
from ._handlers.basehandler import BaseHandler
|
2024-04-12 11:58:25 +02:00
|
|
|
from ._handlers.businessconnectionhandler import BusinessConnectionHandler
|
|
|
|
from ._handlers.businessmessagesdeletedhandler import BusinessMessagesDeletedHandler
|
2024-01-15 20:15:33 +01:00
|
|
|
from ._handlers.callbackqueryhandler import CallbackQueryHandler
|
2024-02-08 17:12:00 +01:00
|
|
|
from ._handlers.chatboosthandler import ChatBoostHandler
|
2024-01-15 20:15:33 +01:00
|
|
|
from ._handlers.chatjoinrequesthandler import ChatJoinRequestHandler
|
|
|
|
from ._handlers.chatmemberhandler import ChatMemberHandler
|
|
|
|
from ._handlers.choseninlineresulthandler import ChosenInlineResultHandler
|
|
|
|
from ._handlers.commandhandler import CommandHandler
|
|
|
|
from ._handlers.conversationhandler import ConversationHandler
|
|
|
|
from ._handlers.inlinequeryhandler import InlineQueryHandler
|
|
|
|
from ._handlers.messagehandler import MessageHandler
|
2024-02-08 17:12:00 +01:00
|
|
|
from ._handlers.messagereactionhandler import MessageReactionHandler
|
2024-09-17 18:09:19 +02:00
|
|
|
from ._handlers.paidmediapurchasedhandler import PaidMediaPurchasedHandler
|
2024-01-15 20:15:33 +01:00
|
|
|
from ._handlers.pollanswerhandler import PollAnswerHandler
|
|
|
|
from ._handlers.pollhandler import PollHandler
|
|
|
|
from ._handlers.precheckoutqueryhandler import PreCheckoutQueryHandler
|
|
|
|
from ._handlers.prefixhandler import PrefixHandler
|
|
|
|
from ._handlers.shippingqueryhandler import ShippingQueryHandler
|
|
|
|
from ._handlers.stringcommandhandler import StringCommandHandler
|
|
|
|
from ._handlers.stringregexhandler import StringRegexHandler
|
|
|
|
from ._handlers.typehandler import TypeHandler
|
2022-05-05 09:27:54 +02:00
|
|
|
from ._jobqueue import Job, JobQueue
|
|
|
|
from ._picklepersistence import PicklePersistence
|
|
|
|
from ._updater import Updater
|