MTPyroger/pyrogram/client/methods/users/set_profile_photo.py

58 lines
1.9 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
from pyrogram.api import functions
from ...ext import BaseClient
from typing import Union, BinaryIO
2018-10-15 09:03:07 +00:00
class SetProfilePhoto(BaseClient):
def set_profile_photo(
2019-03-16 18:23:23 +00:00
self,
photo: Union[str, BinaryIO]
2019-03-16 18:23:23 +00:00
) -> bool:
"""Set a new profile photo.
2018-10-15 09:03:07 +00:00
If you want to set a profile video instead, use :meth:`~Client.set_profile_video`
This method only works for Users.
Bots profile photos must be set using BotFather.
2018-10-15 09:03:07 +00:00
Parameters:
2018-10-15 09:03:07 +00:00
photo (``str``):
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
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
app.set_profile_photo("new_photo.jpg")
2018-10-15 09:03:07 +00:00
"""
return bool(
self.send(
functions.photos.UploadProfilePhoto(
file=self.save_file(photo)
2018-10-15 09:03:07 +00:00
)
)
)