InputMediaPhoto

class telegram.InputMediaPhoto(media, caption=None, parse_mode=None, caption_entities=None, filename_depr=None, has_spoiler=None, show_caption_above_media=None, *, filename=None, api_kwargs=None)[source]

Bases: telegram.InputMedia

Represents a photo to be sent.

Parameters:
Keyword Arguments:

filename (str, optional) –

Custom file name for the photo, when uploading a new file. Convenience parameter, useful e.g. when sending files generated by the tempfile module.

Added in version 13.1.

Changed in version 22.8: This parameter is now keyword-only.

type[source]

'photo'.

Type:

str

media[source]

Photo to send.

Type:

str | telegram.InputFile

caption[source]

Optional. Caption of the photo to be sent, 0-1024 characters after entities parsing.

Type:

str

parse_mode[source]

Optional. Mode for parsing entities. See telegram.constants.ParseMode and formatting options for more details.

Type:

str

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]

has_spoiler[source]

Optional. True, if the photo is covered with a spoiler animation.

Added in version 20.0.

Type:

bool

show_caption_above_media[source]

Optional. True, if the caption must be shown above the message media.

Added in version 21.3.

Type:

bool