-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set_birthdate set_personal_chat
- Loading branch information
Showing
7 changed files
with
139 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# 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 Optional | ||
|
||
import pyrogram | ||
from pyrogram import raw, types | ||
|
||
|
||
class SetBirthdate: | ||
async def set_birthdate( | ||
self: "pyrogram.Client", | ||
birthdate: Optional["types.Birthdate"] = None | ||
) -> bool: | ||
"""Changes the birthdate of the current user | ||
.. include:: /_includes/usable-by/users.rst | ||
Parameters: | ||
birthdate (:obj:`~pyrogram.types.Birthdate`, *optional*): | ||
The new value of the current user's birthdate; pass None to remove the birthdate | ||
Returns: | ||
``bool``: True on success. | ||
Example: | ||
.. code-block:: python | ||
# Update your birthdate | ||
await app.set_birthdate(birthdate=types.Birthdate( | ||
day=15, | ||
month=12, | ||
year=2017 | ||
)) | ||
# Remove your birthdate | ||
await app.set_birthdate() | ||
""" | ||
|
||
return bool( | ||
await self.invoke( | ||
raw.functions.account.UpdateBirthday( | ||
birthday=birthdate.write() if birthdate else None | ||
) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# 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 Optional, Union | ||
|
||
import pyrogram | ||
from pyrogram import raw | ||
|
||
|
||
class SetPersonalChat: | ||
async def set_personal_chat( | ||
self: "pyrogram.Client", | ||
chat_id: Optional[Union[int, str]] = None, | ||
) -> bool: | ||
"""Changes the personal chat of the current user | ||
.. include:: /_includes/usable-by/users.rst | ||
Parameters: | ||
chat_id (``int`` | ``str`, *optional*): | ||
Identifier of the new personal chat; pass None to remove the chat. Use :meth:`~pyrogram.Client.get_suitable_personal_chats` to get suitable chats | ||
Returns: | ||
``bool``: True on success. | ||
Example: | ||
.. code-block:: python | ||
# Update your personal chat | ||
await app.set_personal_chat(chat_id="@Pyrogram") | ||
# Hide your personal chat | ||
await app.set_personal_chat() | ||
""" | ||
|
||
return bool( | ||
await self.invoke( | ||
raw.functions.account.UpdatePersonalChannel( | ||
channel=await self.resolve_peer( | ||
chat_id | ||
) if chat_id else raw.types.InputChannelEmpty() | ||
) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters