|
46 | 46 | from .emoji import Emoji |
47 | 47 | from .parsemode import ParseMode |
48 | 48 | from .messageentity import MessageEntity |
| 49 | +from .animation import Animation |
| 50 | +from .game import Game |
49 | 51 | from .message import Message |
50 | 52 | from .inputmessagecontent import InputMessageContent |
51 | 53 | from .callbackquery import CallbackQuery |
|
73 | 75 | from .inlinequeryresultvenue import InlineQueryResultVenue |
74 | 76 | from .inlinequeryresultvideo import InlineQueryResultVideo |
75 | 77 | from .inlinequeryresultvoice import InlineQueryResultVoice |
| 78 | +from .inlinequeryresultgame import InlineQueryResultGame |
76 | 79 | from .inputtextmessagecontent import InputTextMessageContent |
77 | 80 | from .inputlocationmessagecontent import InputLocationMessageContent |
78 | 81 | from .inputvenuemessagecontent import InputVenueMessageContent |
79 | 82 | from .inputcontactmessagecontent import InputContactMessageContent |
| 83 | +from .webhookinfo import WebhookInfo |
| 84 | +from .gamehighscore import GameHighScore |
80 | 85 | from .update import Update |
81 | 86 | from .bot import Bot |
82 | 87 | from .constants import (MAX_MESSAGE_LENGTH, MAX_CAPTION_LENGTH, SUPPORTED_WEBHOOK_PORTS, |
|
87 | 92 |
|
88 | 93 | __author__ = 'devs@python-telegram-bot.org' |
89 | 94 |
|
90 | | -__all__ = ['Audio', 'Bot', 'Chat', 'ChatMember', 'ChatAction', 'ChosenInlineResult', |
91 | | - 'CallbackQuery', 'Contact', 'Document', 'Emoji', 'File', 'ForceReply', |
92 | | - 'InlineKeyboardButton', 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', |
93 | | - 'InlineQueryResult', 'InlineQueryResultArticle', 'InlineQueryResultAudio', |
94 | | - 'InlineQueryResultCachedAudio', 'InlineQueryResultCachedDocument', |
95 | | - 'InlineQueryResultCachedGif', 'InlineQueryResultCachedMpeg4Gif', |
96 | | - 'InlineQueryResultCachedPhoto', 'InlineQueryResultCachedSticker', |
97 | | - 'InlineQueryResultCachedVideo', 'InlineQueryResultCachedVoice', |
98 | | - 'InlineQueryResultContact', 'InlineQueryResultDocument', 'InlineQueryResultGif', |
99 | | - 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', 'InlineQueryResultPhoto', |
100 | | - 'InlineQueryResultVenue', 'InlineQueryResultVideo', 'InlineQueryResultVoice', |
101 | | - 'InputContactMessageContent', 'InputFile', 'InputLocationMessageContent', |
102 | | - 'InputMessageContent', 'InputTextMessageContent', 'InputVenueMessageContent', |
103 | | - 'KeyboardButton', 'Location', 'Message', 'MessageEntity', 'ParseMode', 'PhotoSize', |
104 | | - 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', 'ReplyMarkup', 'Sticker', 'TelegramError', |
105 | | - 'TelegramObject', 'Update', 'User', 'UserProfilePhotos', 'Venue', 'Video', 'Voice', |
106 | | - 'MAX_MESSAGE_LENGTH', 'MAX_CAPTION_LENGTH', 'SUPPORTED_WEBHOOK_PORTS', |
107 | | - 'MAX_FILESIZE_DOWNLOAD', 'MAX_FILESIZE_UPLOAD', 'MAX_MESSAGES_PER_SECOND_PER_CHAT', |
108 | | - 'MAX_MESSAGES_PER_SECOND', 'MAX_MESSAGES_PER_MINUTE_PER_GROUP'] |
| 95 | +__all__ = [ |
| 96 | + 'Audio', 'Bot', 'Chat', 'ChatMember', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', |
| 97 | + 'Contact', 'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton', |
| 98 | + 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult', |
| 99 | + 'InlineQueryResultArticle', 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio', |
| 100 | + 'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif', |
| 101 | + 'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto', |
| 102 | + 'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo', |
| 103 | + 'InlineQueryResultCachedVoice', 'InlineQueryResultContact', 'InlineQueryResultDocument', |
| 104 | + 'InlineQueryResultGif', 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', |
| 105 | + 'InlineQueryResultPhoto', 'InlineQueryResultVenue', 'InlineQueryResultVideo', |
| 106 | + 'InlineQueryResultVoice', 'InlineQueryResultGame', 'InputContactMessageContent', 'InputFile', |
| 107 | + 'InputLocationMessageContent', 'InputMessageContent', 'InputTextMessageContent', |
| 108 | + 'InputVenueMessageContent', 'KeyboardButton', 'Location', 'Message', 'MessageEntity', |
| 109 | + 'ParseMode', 'PhotoSize', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', 'ReplyMarkup', 'Sticker', |
| 110 | + 'TelegramError', 'TelegramObject', 'Update', 'User', 'UserProfilePhotos', 'Venue', 'Video', |
| 111 | + 'Voice', 'MAX_MESSAGE_LENGTH', 'MAX_CAPTION_LENGTH', 'SUPPORTED_WEBHOOK_PORTS', |
| 112 | + 'MAX_FILESIZE_DOWNLOAD', 'MAX_FILESIZE_UPLOAD', 'MAX_MESSAGES_PER_SECOND_PER_CHAT', |
| 113 | + 'MAX_MESSAGES_PER_SECOND', 'MAX_MESSAGES_PER_MINUTE_PER_GROUP', 'WebhookInfo', 'Animation', |
| 114 | + 'Game', 'GameHighScore' |
| 115 | +] |
0 commit comments