|
44 | 44 | from .parsemode import ParseMode |
45 | 45 | from .message import Message |
46 | 46 | from .choseninlineresult import ChosenInlineResult |
| 47 | +from .inlinekeyboardbutton import InlineKeyboardButton |
47 | 48 | from .inlinequery import InlineQuery |
48 | 49 | from .inlinequeryresult import InlineQueryResult |
49 | 50 | from .inlinequeryresultarticle import InlineQueryResultArticle |
@@ -109,22 +110,58 @@ def JobQueue(*args, **kwargs): |
109 | 110 |
|
110 | 111 | __author__ = 'devs@python-telegram-bot.org' |
111 | 112 | __version__ = '3.4' |
112 | | -__all__ = ('Audio', 'Bot', 'Chat', 'Emoji', 'TelegramError', 'InputFile', |
113 | | - 'Contact', 'ForceReply', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', |
114 | | - 'UserProfilePhotos', 'ChatAction', 'Location', 'Video', 'Document', |
115 | | - 'Sticker', 'File', 'PhotoSize', 'Update', 'ParseMode', 'Message', |
116 | | - 'User', 'TelegramObject', 'NullHandler', 'Voice', 'InlineQuery', |
117 | | - 'ReplyMarkup', 'ChosenInlineResult', 'InlineQueryResult', |
118 | | - 'InlineQueryResult', 'InlineQueryResultArticle', |
119 | | - 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio', |
120 | | - 'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif', |
121 | | - 'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto', |
122 | | - 'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo', |
123 | | - 'InlineQueryResultCachedVoice', 'InlineQueryResultContact', |
124 | | - 'InlineQueryResultDocument', 'InlineQueryResultGif', |
125 | | - 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', |
126 | | - 'InlineQueryResultPhoto', 'InlineQueryResultVenue', |
127 | | - 'InlineQueryResultVideo', 'InlineQueryResultVoice', |
128 | | - 'InputMessageContent', 'InputTextMessageContent', |
129 | | - 'InputLocationMessageContent', 'InputVenueMessageContent', |
130 | | - 'InputContactMessageContent') |
| 113 | +__all__ = ('Audio', |
| 114 | + 'Bot', |
| 115 | + 'Chat', |
| 116 | + 'ChatAction', |
| 117 | + 'ChosenInlineResult', |
| 118 | + 'Contact', |
| 119 | + 'Document', |
| 120 | + 'Emoji', |
| 121 | + 'File', |
| 122 | + 'ForceReply', |
| 123 | + 'InlineKeyboardButton', |
| 124 | + 'InlineQuery', |
| 125 | + 'InlineQueryResult', |
| 126 | + 'InlineQueryResult', |
| 127 | + 'InlineQueryResultArticle', |
| 128 | + 'InlineQueryResultAudio', |
| 129 | + 'InlineQueryResultCachedAudio', |
| 130 | + 'InlineQueryResultCachedDocument', |
| 131 | + 'InlineQueryResultCachedGif', |
| 132 | + 'InlineQueryResultCachedMpeg4Gif', |
| 133 | + 'InlineQueryResultCachedPhoto', |
| 134 | + 'InlineQueryResultCachedSticker', |
| 135 | + 'InlineQueryResultCachedVideo', |
| 136 | + 'InlineQueryResultCachedVoice', |
| 137 | + 'InlineQueryResultContact', |
| 138 | + 'InlineQueryResultDocument', |
| 139 | + 'InlineQueryResultGif', |
| 140 | + 'InlineQueryResultLocation', |
| 141 | + 'InlineQueryResultMpeg4Gif', |
| 142 | + 'InlineQueryResultPhoto', |
| 143 | + 'InlineQueryResultVenue', |
| 144 | + 'InlineQueryResultVideo', |
| 145 | + 'InlineQueryResultVoice', |
| 146 | + 'InputContactMessageContent', |
| 147 | + 'InputFile', |
| 148 | + 'InputLocationMessageContent', |
| 149 | + 'InputMessageContent', |
| 150 | + 'InputTextMessageContent', |
| 151 | + 'InputVenueMessageContent', |
| 152 | + 'Location', |
| 153 | + 'Message', |
| 154 | + 'NullHandler', |
| 155 | + 'ParseMode', |
| 156 | + 'PhotoSize', |
| 157 | + 'ReplyKeyboardHide', |
| 158 | + 'ReplyKeyboardMarkup', |
| 159 | + 'ReplyMarkup', |
| 160 | + 'Sticker', |
| 161 | + 'TelegramError', |
| 162 | + 'TelegramObject', |
| 163 | + 'Update', |
| 164 | + 'User', |
| 165 | + 'UserProfilePhotos', |
| 166 | + 'Video', |
| 167 | + 'Voice',) |
0 commit comments