|
16 | 16 | #
|
17 | 17 | # You should have received a copy of the GNU Lesser Public License
|
18 | 18 | # along with this program. If not, see [http://www.gnu.org/licenses/].
|
19 |
| - |
20 | 19 | """A library that provides a Python interface to the Telegram Bot API"""
|
21 | 20 |
|
22 | 21 | from sys import version_info
|
|
81 | 80 | from .update import Update
|
82 | 81 | from .bot import Bot
|
83 | 82 |
|
84 |
| - |
85 | 83 | __author__ = 'devs@python-telegram-bot.org'
|
86 | 84 | __version__ = '4.0.3'
|
87 |
| -__all__ = ['Audio', |
88 |
| - 'Bot', |
89 |
| - 'Chat', |
90 |
| - 'ChatAction', |
91 |
| - 'ChosenInlineResult', |
92 |
| - 'CallbackQuery', |
93 |
| - 'Contact', |
94 |
| - 'Document', |
95 |
| - 'Emoji', |
96 |
| - 'File', |
97 |
| - 'ForceReply', |
98 |
| - 'InlineKeyboardButton', |
99 |
| - 'InlineKeyboardMarkup', |
100 |
| - 'InlineQuery', |
101 |
| - 'InlineQueryResult', |
102 |
| - 'InlineQueryResult', |
103 |
| - 'InlineQueryResultArticle', |
104 |
| - 'InlineQueryResultAudio', |
105 |
| - 'InlineQueryResultCachedAudio', |
106 |
| - 'InlineQueryResultCachedDocument', |
107 |
| - 'InlineQueryResultCachedGif', |
108 |
| - 'InlineQueryResultCachedMpeg4Gif', |
109 |
| - 'InlineQueryResultCachedPhoto', |
110 |
| - 'InlineQueryResultCachedSticker', |
111 |
| - 'InlineQueryResultCachedVideo', |
112 |
| - 'InlineQueryResultCachedVoice', |
113 |
| - 'InlineQueryResultContact', |
114 |
| - 'InlineQueryResultDocument', |
115 |
| - 'InlineQueryResultGif', |
116 |
| - 'InlineQueryResultLocation', |
117 |
| - 'InlineQueryResultMpeg4Gif', |
118 |
| - 'InlineQueryResultPhoto', |
119 |
| - 'InlineQueryResultVenue', |
120 |
| - 'InlineQueryResultVideo', |
121 |
| - 'InlineQueryResultVoice', |
122 |
| - 'InputContactMessageContent', |
123 |
| - 'InputFile', |
124 |
| - 'InputLocationMessageContent', |
125 |
| - 'InputMessageContent', |
126 |
| - 'InputTextMessageContent', |
127 |
| - 'InputVenueMessageContent', |
128 |
| - 'KeyboardButton', |
129 |
| - 'Location', |
130 |
| - 'Message', |
131 |
| - 'MessageEntity', |
132 |
| - 'NullHandler', |
133 |
| - 'ParseMode', |
134 |
| - 'PhotoSize', |
135 |
| - 'ReplyKeyboardHide', |
136 |
| - 'ReplyKeyboardMarkup', |
137 |
| - 'ReplyMarkup', |
138 |
| - 'Sticker', |
139 |
| - 'TelegramError', |
140 |
| - 'TelegramObject', |
141 |
| - 'Update', |
142 |
| - 'User', |
143 |
| - 'UserProfilePhotos', |
144 |
| - 'Venue', |
145 |
| - 'Video', |
146 |
| - 'Voice'] |
147 |
| - |
| 85 | +__all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact', |
| 86 | + 'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton', |
| 87 | + 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult', |
| 88 | + 'InlineQueryResultArticle', 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio', |
| 89 | + 'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif', |
| 90 | + 'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto', |
| 91 | + 'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo', |
| 92 | + 'InlineQueryResultCachedVoice', 'InlineQueryResultContact', 'InlineQueryResultDocument', |
| 93 | + 'InlineQueryResultGif', 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', |
| 94 | + 'InlineQueryResultPhoto', 'InlineQueryResultVenue', 'InlineQueryResultVideo', |
| 95 | + 'InlineQueryResultVoice', 'InputContactMessageContent', 'InputFile', |
| 96 | + 'InputLocationMessageContent', 'InputMessageContent', 'InputTextMessageContent', |
| 97 | + 'InputVenueMessageContent', 'KeyboardButton', 'Location', 'Message', 'MessageEntity', |
| 98 | + 'NullHandler', 'ParseMode', 'PhotoSize', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', |
| 99 | + 'ReplyMarkup', 'Sticker', 'TelegramError', 'TelegramObject', 'Update', 'User', |
| 100 | + 'UserProfilePhotos', 'Venue', 'Video', 'Voice'] |
148 | 101 |
|
149 | 102 | if version_info < (2, 7):
|
150 | 103 | from warnings import warn
|
|
0 commit comments