Source code for pyrogram.types.input_content.input_media

#  Pyrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
#  This file is part of Pyrogram.
#
#  Pyrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Pyrogram is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Pyrogram.  If not, see <http://www.gnu.org/licenses/>.

from typing import TYPE_CHECKING, BinaryIO, List, Optional, Union

from ..messages_and_media import MessageEntity
from ..object import Object

if TYPE_CHECKING:
    from pyrogram import raw


[docs] class InputMedia(Object): """Content of a media message to be sent. It should be one of: - :obj:`~pyrogram.types.InputMediaAnimation` - :obj:`~pyrogram.types.InputMediaAudio` - :obj:`~pyrogram.types.InputMediaDocument` - :obj:`~pyrogram.types.InputMediaLivePhoto` - :obj:`~pyrogram.types.InputMediaPhoto` - :obj:`~pyrogram.types.InputMediaVideo` """ def __init__( self, media: Optional[Union[str, BinaryIO]] = None, caption: str = "", parse_mode: Optional[str] = None, caption_entities: Optional[List[MessageEntity]] = None, ): super().__init__() self.media = media self.caption = caption self.parse_mode = parse_mode self.caption_entities = caption_entities async def write(self, **kwargs) -> "raw.base.InputMedia": raise NotImplementedError