2015-07-07 21:50:36 +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
|
2018-01-04 16:16:06 +01:00
|
|
|
# Copyright (C) 2015-2018
|
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/].
|
2015-08-28 17:19:30 +02:00
|
|
|
"""A library that provides a Python interface to the Telegram Bot API"""
|
2015-07-07 21:50:36 +02:00
|
|
|
|
2015-07-20 12:53:58 +02:00
|
|
|
from .base import TelegramObject
|
2015-07-12 15:39:11 +02:00
|
|
|
from .user import User
|
2017-07-01 17:08:45 +02:00
|
|
|
from .files.chatphoto import ChatPhoto
|
2015-12-16 15:31:02 +01:00
|
|
|
from .chat import Chat
|
2016-05-24 01:22:31 +02:00
|
|
|
from .chatmember import ChatMember
|
2017-06-18 12:35:00 +02:00
|
|
|
from .files.photosize import PhotoSize
|
|
|
|
from .files.audio import Audio
|
|
|
|
from .files.voice import Voice
|
|
|
|
from .files.document import Document
|
2017-07-22 13:34:51 +02:00
|
|
|
from .files.sticker import Sticker, StickerSet, MaskPosition
|
2017-06-18 12:35:00 +02:00
|
|
|
from .files.video import Video
|
|
|
|
from .files.contact import Contact
|
|
|
|
from .files.location import Location
|
|
|
|
from .files.venue import Venue
|
2017-06-20 22:41:02 +02:00
|
|
|
from .files.videonote import VideoNote
|
2015-07-12 15:39:11 +02:00
|
|
|
from .chataction import ChatAction
|
|
|
|
from .userprofilephotos import UserProfilePhotos
|
2016-04-14 07:21:00 +02:00
|
|
|
from .keyboardbutton import KeyboardButton
|
2015-07-20 04:06:04 +02:00
|
|
|
from .replymarkup import ReplyMarkup
|
2015-07-12 15:39:11 +02:00
|
|
|
from .replykeyboardmarkup import ReplyKeyboardMarkup
|
2017-07-23 21:58:20 +02:00
|
|
|
from .replykeyboardremove import ReplyKeyboardRemove
|
2015-07-12 15:39:11 +02:00
|
|
|
from .forcereply import ForceReply
|
|
|
|
from .error import TelegramError
|
2017-06-18 12:35:00 +02:00
|
|
|
from .files.inputfile import InputFile
|
|
|
|
from .files.file import File
|
2015-09-10 19:15:20 +02:00
|
|
|
from .parsemode import ParseMode
|
2016-04-16 16:33:58 +02:00
|
|
|
from .messageentity import MessageEntity
|
2017-06-18 12:35:00 +02:00
|
|
|
from .games.animation import Animation
|
|
|
|
from .games.game import Game
|
2017-07-23 22:33:08 +02:00
|
|
|
from .games.callbackgame import CallbackGame
|
2017-06-18 12:35:00 +02:00
|
|
|
from .payment.shippingaddress import ShippingAddress
|
|
|
|
from .payment.orderinfo import OrderInfo
|
|
|
|
from .payment.successfulpayment import SuccessfulPayment
|
|
|
|
from .payment.invoice import Invoice
|
2016-04-17 12:42:41 +02:00
|
|
|
from .message import Message
|
2016-04-14 02:10:04 +02:00
|
|
|
from .callbackquery import CallbackQuery
|
2016-01-04 17:31:06 +01:00
|
|
|
from .choseninlineresult import ChosenInlineResult
|
2017-06-18 12:35:00 +02:00
|
|
|
from .inline.inlinekeyboardbutton import InlineKeyboardButton
|
|
|
|
from .inline.inlinekeyboardmarkup import InlineKeyboardMarkup
|
|
|
|
from .inline.inputmessagecontent import InputMessageContent
|
|
|
|
from .inline.inlinequery import InlineQuery
|
|
|
|
from .inline.inlinequeryresult import InlineQueryResult
|
|
|
|
from .inline.inlinequeryresultarticle import InlineQueryResultArticle
|
|
|
|
from .inline.inlinequeryresultaudio import InlineQueryResultAudio
|
|
|
|
from .inline.inlinequeryresultcachedaudio import InlineQueryResultCachedAudio
|
|
|
|
from .inline.inlinequeryresultcacheddocument import InlineQueryResultCachedDocument
|
|
|
|
from .inline.inlinequeryresultcachedgif import InlineQueryResultCachedGif
|
|
|
|
from .inline.inlinequeryresultcachedmpeg4gif import InlineQueryResultCachedMpeg4Gif
|
|
|
|
from .inline.inlinequeryresultcachedphoto import InlineQueryResultCachedPhoto
|
|
|
|
from .inline.inlinequeryresultcachedsticker import InlineQueryResultCachedSticker
|
|
|
|
from .inline.inlinequeryresultcachedvideo import InlineQueryResultCachedVideo
|
|
|
|
from .inline.inlinequeryresultcachedvoice import InlineQueryResultCachedVoice
|
|
|
|
from .inline.inlinequeryresultcontact import InlineQueryResultContact
|
|
|
|
from .inline.inlinequeryresultdocument import InlineQueryResultDocument
|
|
|
|
from .inline.inlinequeryresultgif import InlineQueryResultGif
|
|
|
|
from .inline.inlinequeryresultlocation import InlineQueryResultLocation
|
|
|
|
from .inline.inlinequeryresultmpeg4gif import InlineQueryResultMpeg4Gif
|
|
|
|
from .inline.inlinequeryresultphoto import InlineQueryResultPhoto
|
|
|
|
from .inline.inlinequeryresultvenue import InlineQueryResultVenue
|
|
|
|
from .inline.inlinequeryresultvideo import InlineQueryResultVideo
|
|
|
|
from .inline.inlinequeryresultvoice import InlineQueryResultVoice
|
|
|
|
from .inline.inlinequeryresultgame import InlineQueryResultGame
|
|
|
|
from .inline.inputtextmessagecontent import InputTextMessageContent
|
|
|
|
from .inline.inputlocationmessagecontent import InputLocationMessageContent
|
|
|
|
from .inline.inputvenuemessagecontent import InputVenueMessageContent
|
|
|
|
from .inline.inputcontactmessagecontent import InputContactMessageContent
|
|
|
|
from .payment.labeledprice import LabeledPrice
|
|
|
|
from .payment.shippingoption import ShippingOption
|
|
|
|
from .payment.precheckoutquery import PreCheckoutQuery
|
|
|
|
from .payment.shippingquery import ShippingQuery
|
2016-10-03 20:34:08 +02:00
|
|
|
from .webhookinfo import WebhookInfo
|
2017-06-18 12:35:00 +02:00
|
|
|
from .games.gamehighscore import GameHighScore
|
2015-08-22 04:15:29 +02:00
|
|
|
from .update import Update
|
2015-07-12 15:39:11 +02:00
|
|
|
from .bot import Bot
|
2016-07-14 21:36:15 +02:00
|
|
|
from .constants import (MAX_MESSAGE_LENGTH, MAX_CAPTION_LENGTH, SUPPORTED_WEBHOOK_PORTS,
|
|
|
|
MAX_FILESIZE_DOWNLOAD, MAX_FILESIZE_UPLOAD,
|
|
|
|
MAX_MESSAGES_PER_SECOND_PER_CHAT, MAX_MESSAGES_PER_SECOND,
|
|
|
|
MAX_MESSAGES_PER_MINUTE_PER_GROUP)
|
2017-12-08 22:38:59 +01:00
|
|
|
from .files.inputmedia import InputMedia
|
|
|
|
from .files.inputmediavideo import InputMediaVideo
|
|
|
|
from .files.inputmediaphoto import InputMediaPhoto
|
2016-07-29 17:40:11 +02:00
|
|
|
from .version import __version__ # flake8: noqa
|
2016-03-12 15:22:50 +01:00
|
|
|
|
2016-01-13 17:23:15 +01:00
|
|
|
__author__ = 'devs@python-telegram-bot.org'
|
2016-07-29 17:40:11 +02:00
|
|
|
|
2016-10-03 20:55:21 +02:00
|
|
|
__all__ = [
|
|
|
|
'Audio', 'Bot', 'Chat', 'ChatMember', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery',
|
2017-07-23 21:58:20 +02:00
|
|
|
'Contact', 'Document', 'File', 'ForceReply', 'InlineKeyboardButton',
|
2016-10-03 20:55:21 +02:00
|
|
|
'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult',
|
|
|
|
'InlineQueryResultArticle', 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio',
|
|
|
|
'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif',
|
|
|
|
'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto',
|
|
|
|
'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo',
|
|
|
|
'InlineQueryResultCachedVoice', 'InlineQueryResultContact', 'InlineQueryResultDocument',
|
|
|
|
'InlineQueryResultGif', 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif',
|
|
|
|
'InlineQueryResultPhoto', 'InlineQueryResultVenue', 'InlineQueryResultVideo',
|
|
|
|
'InlineQueryResultVoice', 'InlineQueryResultGame', 'InputContactMessageContent', 'InputFile',
|
|
|
|
'InputLocationMessageContent', 'InputMessageContent', 'InputTextMessageContent',
|
|
|
|
'InputVenueMessageContent', 'KeyboardButton', 'Location', 'Message', 'MessageEntity',
|
2016-12-11 22:44:52 +01:00
|
|
|
'ParseMode', 'PhotoSize', 'ReplyKeyboardRemove', 'ReplyKeyboardMarkup', 'ReplyMarkup',
|
|
|
|
'Sticker', 'TelegramError', 'TelegramObject', 'Update', 'User', 'UserProfilePhotos', 'Venue',
|
|
|
|
'Video', 'Voice', 'MAX_MESSAGE_LENGTH', 'MAX_CAPTION_LENGTH', 'SUPPORTED_WEBHOOK_PORTS',
|
2016-10-03 20:55:21 +02:00
|
|
|
'MAX_FILESIZE_DOWNLOAD', 'MAX_FILESIZE_UPLOAD', 'MAX_MESSAGES_PER_SECOND_PER_CHAT',
|
|
|
|
'MAX_MESSAGES_PER_SECOND', 'MAX_MESSAGES_PER_MINUTE_PER_GROUP', 'WebhookInfo', 'Animation',
|
2017-06-01 21:01:04 +02:00
|
|
|
'Game', 'GameHighScore', 'VideoNote', 'LabeledPrice', 'SuccessfulPayment', 'ShippingOption',
|
2017-07-22 13:34:51 +02:00
|
|
|
'ShippingAddress', 'PreCheckoutQuery', 'OrderInfo', 'Invoice', 'ShippingQuery', 'ChatPhoto',
|
2017-12-08 22:38:59 +01:00
|
|
|
'StickerSet', 'MaskPosition', 'CallbackGame', 'InputMedia', 'InputMediaPhoto',
|
|
|
|
'InputMediaVideo'
|
2016-10-03 20:55:21 +02:00
|
|
|
]
|