MTPyroger/pyrogram/methods/users/set_profile_photo.py

74 lines
2.6 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
2018-10-15 09:03:07 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2018-10-15 09:03:07 +00:00
#
2020-03-21 14:43:32 +00:00
# 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.
2018-10-15 09:03:07 +00:00
#
2020-03-21 14:43:32 +00:00
# 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.
2018-10-15 09:03:07 +00:00
#
2020-03-21 14:43:32 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-10-15 09:03:07 +00:00
2020-07-27 13:03:23 +00:00
from typing import Union, BinaryIO
from pyrogram import raw
from pyrogram.scaffold import Scaffold
2018-10-15 09:03:07 +00:00
class SetProfilePhoto(Scaffold):
async def set_profile_photo(
2019-03-16 18:23:23 +00:00
self,
2020-07-27 13:03:23 +00:00
*,
photo: Union[str, BinaryIO] = None,
video: Union[str, BinaryIO] = None
2019-03-16 18:23:23 +00:00
) -> bool:
2020-07-27 13:03:23 +00:00
"""Set a new profile photo or video (H.264/MPEG-4 AVC video, max 5 seconds).
The ``photo`` and ``video`` arguments are mutually exclusive.
Pass either one as named argument (see examples below).
2018-10-15 09:03:07 +00:00
2020-07-27 13:03:23 +00:00
.. note::
2020-07-27 13:03:23 +00:00
This method only works for Users.
Bots profile photos must be set using BotFather.
2018-10-15 09:03:07 +00:00
Parameters:
2020-07-27 13:03:23 +00:00
photo (``str`` | ``BinaryIO``, *optional*):
2018-10-15 09:03:07 +00:00
Profile photo to set.
Pass a file path as string to upload a new photo that exists on your local machine or
pass a binary file-like object with its attribute ".name" set for in-memory uploads.
2018-10-15 09:03:07 +00:00
2020-07-27 13:03:23 +00:00
video (``str`` | ``BinaryIO``, *optional*):
Profile video to set.
Pass a file path as string to upload a new video that exists on your local machine or
pass a binary file-like object with its attribute ".name" set for in-memory uploads.
2018-10-15 09:03:07 +00:00
Returns:
``bool``: True on success.
2018-10-15 09:03:07 +00:00
2019-07-25 09:22:14 +00:00
Example:
.. code-block:: python
2020-07-27 13:03:23 +00:00
# Set a new profile photo
app.set_profile_photo(photo="new_photo.jpg")
# Set a new profile video
app.set_profile_photo(video="new_video.mp4")
2018-10-15 09:03:07 +00:00
"""
return bool(
await self.send(
raw.functions.photos.UploadProfilePhoto(
file=await self.save_file(photo),
video=await self.save_file(video)
2018-10-15 09:03:07 +00:00
)
)
)