InputMedia¶
- class telegram.InputMedia(media_type, media, caption=None, caption_entities=None, parse_mode=None, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectBase class for Telegram InputMedia Objects.
Changed in version 20.0: Added arguments and attributes
type,media,caption,caption_entities,parse_mode.See also
- Parameters:
media_type (
str) – Type of media that the instance represents.media (
str|InputFile) – File to send. Pass afile_idas String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one. To upload a file, you can either pass a file object (e.g.open("filename", "rb")) or the file contents as bytes. If the bot is running inlocal_mode, passing the path of the file (as string orpathlib.Pathobject) is supported as well.caption (
str, optional) – Caption of the media to be sent, 0-1024characters after entities parsing.caption_entities (Sequence[
telegram.MessageEntity], optional) –Sequence of special entities that appear in the caption, which can be specified instead of
parse_mode.Changed in version 20.0: Accepts any
collections.abc.Sequenceas input instead of just a list. The input is converted to a tuple.parse_mode (
str, optional) – Mode for parsing entities. Seetelegram.constants.ParseModeand formatting options for more details.
- caption[source]¶
Optional. Caption of the media to be sent, 0-
1024characters after entities parsing.- Type:
- parse_mode[source]¶
Optional. Mode for parsing entities. See
telegram.constants.ParseModeand formatting options for more details.- Type:
- caption_entities[source]¶
Optional. Tuple of special entities that appear in the caption, which can be specified instead of
parse_mode.Changed in version 20.0:
This attribute is now an immutable tuple.
This attribute is now always a tuple, that may be empty.
- Type:
tuple[
telegram.MessageEntity]