mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 07:51:44 +00:00
Add type hinting in Client docstrings
This commit is contained in:
parent
0292d1d446
commit
9bfe4b5058
@ -55,11 +55,19 @@ Config = namedtuple("Config", ["api_id", "api_hash"])
|
|||||||
|
|
||||||
|
|
||||||
class Client:
|
class Client:
|
||||||
"""This object represents a Telegram Client.
|
"""This class represents a Client, the main mean for interacting with Telegram.
|
||||||
|
It exposes bot-like methods for an easy access to the API as well as a simple way to
|
||||||
|
invoke every single Telegram API method available.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
session_name: Name to uniquely identify an authorized session.
|
session_name (:obj:`str`):
|
||||||
test_mode: Enable or disable log-in to testing servers.
|
Name to uniquely identify an authorized session. It will be used
|
||||||
|
to save the session to a file named ``<session_name>.session``.
|
||||||
|
|
||||||
|
test_mode (:obj:`bool`, optional):
|
||||||
|
Enable or disable log-in to testing servers. Defaults to ``False``.
|
||||||
|
Only applicable for new sessions and will be ignored in case previously
|
||||||
|
created sessions are loaded.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
INVITE_LINK_RE = re.compile(r"^(?:https?:\/\/)?t\.me\/joinchat\/(.+)$")
|
INVITE_LINK_RE = re.compile(r"^(?:https?:\/\/)?t\.me\/joinchat\/(.+)$")
|
||||||
@ -87,7 +95,8 @@ class Client:
|
|||||||
self.is_idle = Event()
|
self.is_idle = Event()
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
"""Use this method to start the Client after creating it."""
|
"""Use this method to start the Client after creating it.
|
||||||
|
Requires no parameters."""
|
||||||
self.load_config()
|
self.load_config()
|
||||||
self.load_session(self.session_name)
|
self.load_session(self.session_name)
|
||||||
|
|
||||||
@ -108,7 +117,9 @@ class Client:
|
|||||||
mimetypes.init()
|
mimetypes.init()
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
"""Use this method to manually stop the Client."""
|
"""Use this method to manually stop the Client.
|
||||||
|
Requires no parameters.
|
||||||
|
"""
|
||||||
self.session.stop()
|
self.session.stop()
|
||||||
|
|
||||||
def signal_handler(self, *args):
|
def signal_handler(self, *args):
|
||||||
@ -120,8 +131,9 @@ class Client:
|
|||||||
then gently stop the Client by closing the underlying connection.
|
then gently stop the Client by closing the underlying connection.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
stop_signals:
|
stop_signals (:obj:`tuple`, optional):
|
||||||
Iterable containing signals the signal handler will listen to.
|
Iterable containing signals the signal handler will listen to.
|
||||||
|
Defaults to ``(SIGINT, SIGTERM, SIGABRT)``.
|
||||||
"""
|
"""
|
||||||
for s in stop_signals:
|
for s in stop_signals:
|
||||||
signal(s, self.signal_handler)
|
signal(s, self.signal_handler)
|
||||||
@ -130,26 +142,29 @@ class Client:
|
|||||||
|
|
||||||
# TODO: Better update handler
|
# TODO: Better update handler
|
||||||
def set_update_handler(self, callback: callable):
|
def set_update_handler(self, callback: callable):
|
||||||
"""Use this method to set the update handler
|
"""Use this method to set the update handler.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
callback:
|
callback (:obj:`callable`):
|
||||||
A callback function that accepts a single argument: the update object.
|
A callback function that accepts a single argument: the update object.
|
||||||
"""
|
"""
|
||||||
self.update_handler = callback
|
self.update_handler = callback
|
||||||
|
|
||||||
def send(self, data: Object):
|
def send(self, data: Object):
|
||||||
"""Use this method to send Raw Function calls.
|
"""Use this method to send `Raw Function`_ queries.
|
||||||
|
|
||||||
This method makes possible to manually call every single Telegram API method in a low-level manner.
|
This method makes possible to manually call every single Telegram API method in a low-level manner.
|
||||||
Functions are listed in the **pyrogram.api.functions** package.
|
Available functions are listed in the ``pyrogram.api.functions`` package and may accept compound
|
||||||
|
data types from ``pyrogram.api.types`` as well as bare types such as ``int``, ``str``, etc...
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
data:
|
data (:obj:`Object`):
|
||||||
The API Scheme function filled with proper arguments.
|
The API Scheme function filled with proper arguments.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:class:`pyrogram.Error`
|
:class:`pyrogram.Error`
|
||||||
|
|
||||||
|
.. _`Raw Function`: https://github.com/pyrogram/pyrogram/wiki/Usage#using-raw-functions
|
||||||
"""
|
"""
|
||||||
return self.session.send(data)
|
return self.session.send(data)
|
||||||
|
|
||||||
@ -432,7 +447,7 @@ class Client:
|
|||||||
"""A simple method for testing the user authorization. Requires no parameters.
|
"""A simple method for testing the user authorization. Requires no parameters.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
Full information about the user in form of a **UserFull** object.
|
Full information about the user in form of a ``types.UserFull`` object.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:class:`pyrogram.Error`
|
:class:`pyrogram.Error`
|
||||||
@ -452,21 +467,22 @@ class Client:
|
|||||||
"""Use this method to send text messages.
|
"""Use this method to send text messages.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
text:
|
text (:obj:`str`):
|
||||||
Text of the message to be sent.
|
Text of the message to be sent.
|
||||||
|
|
||||||
disable_web_page_preview:
|
disable_web_page_preview (:obj:`bool`, optional):
|
||||||
Disables link previews for links in this message.
|
Disables link previews for links in this message.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_msg_id:
|
reply_to_msg_id (:obj:`bool`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -494,21 +510,23 @@ class Client:
|
|||||||
"""Use this method to forward messages of any kind.
|
"""Use this method to forward messages of any kind.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
from_chat_id:
|
from_chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the chat where the original message was sent
|
Unique identifier for the chat where the original message was sent
|
||||||
(or channel username in the format @channelusername).
|
(or channel/supergroup username in the format @username). For your personal cloud
|
||||||
|
storage (Saved Messages) you can simply use "me" or "self".
|
||||||
|
|
||||||
disable_notification:
|
message_ids (:obj:`list`):
|
||||||
|
A list of Message identifiers in the chat specified in *from_chat_id*.
|
||||||
|
|
||||||
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
message_ids:
|
|
||||||
A list of Message identifiers in the chat specified in *from_chat_id*.
|
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
On success, the sent Message is returned.
|
On success, the sent Message is returned.
|
||||||
|
|
||||||
@ -535,26 +553,28 @@ class Client:
|
|||||||
"""Use this method to send photos.
|
"""Use this method to send photos.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
photo:
|
photo (:obj:`str`):
|
||||||
Photo to send.
|
Photo to send.
|
||||||
Pass a file path as string to send a photo that exists on your local machine.
|
Pass a file path as string to send a photo that exists on your local machine.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`bool`, optional):
|
||||||
Photo caption, 0-200 characters.
|
Photo caption, 0-200 characters.
|
||||||
|
|
||||||
ttl_seconds:
|
ttl_seconds (:obj:`int`, optional):
|
||||||
Self-Destruct Timer.
|
Self-Destruct Timer.
|
||||||
If you set a timer, the photo will self-destruct after it was viewed.
|
If you set a timer, the photo will self-destruct in :obj:`ttl_seconds`
|
||||||
|
seconds after it was viewed.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -596,34 +616,35 @@ class Client:
|
|||||||
reply_to_message_id: int = None):
|
reply_to_message_id: int = None):
|
||||||
"""Use this method to send audio files.
|
"""Use this method to send audio files.
|
||||||
|
|
||||||
For sending voice messages, use the **send_voice** method instead.
|
For sending voice messages, use the :obj:`send_voice` method instead.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
audio:
|
audio (:obj:`str`):
|
||||||
Audio file to send.
|
Audio file to send.
|
||||||
Pass a file path as string to send an audio file that exists on your local machine.
|
Pass a file path as string to send an audio file that exists on your local machine.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`str`, optional):
|
||||||
Audio caption, 0-200 characters.
|
Audio caption, 0-200 characters.
|
||||||
|
|
||||||
duration:
|
duration (:obj:`int`, optional):
|
||||||
Duration of the audio in seconds.
|
Duration of the audio in seconds.
|
||||||
|
|
||||||
performer:
|
performer (:obj:`str`, optional):
|
||||||
Performer.
|
Performer.
|
||||||
|
|
||||||
title:
|
title (:obj:`str`, optional):
|
||||||
Track name.
|
Track name.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -671,22 +692,23 @@ class Client:
|
|||||||
"""Use this method to send general files.
|
"""Use this method to send general files.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
document:
|
document (:obj:`str`):
|
||||||
File to send.
|
File to send.
|
||||||
Pass a file path as string to send a file that exists on your local machine.
|
Pass a file path as string to send a file that exists on your local machine.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`str`, optional):
|
||||||
Document caption, 0-200 characters.
|
Document caption, 0-200 characters.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -732,31 +754,32 @@ class Client:
|
|||||||
"""Use this method to send video files.
|
"""Use this method to send video files.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
video:
|
video (:obj:`str`):
|
||||||
Video to send.
|
Video to send.
|
||||||
Pass a file path as string to send a video that exists on your local machine.
|
Pass a file path as string to send a video that exists on your local machine.
|
||||||
|
|
||||||
duration:
|
duration (:obj:`int`, optional):
|
||||||
Duration of sent video in seconds.
|
Duration of sent video in seconds.
|
||||||
|
|
||||||
width:
|
width (:obj:`int`, optional):
|
||||||
Video width.
|
Video width.
|
||||||
|
|
||||||
height:
|
height (:obj:`int`, optional):
|
||||||
Video height.
|
Video height.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`str`, optional):
|
||||||
Video caption, 0-200 characters.
|
Video caption, 0-200 characters.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -804,25 +827,26 @@ class Client:
|
|||||||
"""Use this method to send audio files.
|
"""Use this method to send audio files.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
voice:
|
voice (:obj:`str`):
|
||||||
Audio file to send.
|
Audio file to send.
|
||||||
Pass a file path as string to send an audio file that exists on your local machine.
|
Pass a file path as string to send an audio file that exists on your local machine.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`str`, optional):
|
||||||
Voice message caption, 0-200 characters.
|
Voice message caption, 0-200 characters.
|
||||||
|
|
||||||
duration:
|
duration (:obj:`int`, optional):
|
||||||
Duration of the voice message in seconds.
|
Duration of the voice message in seconds.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message
|
If the message is a reply, ID of the original message
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -869,25 +893,26 @@ class Client:
|
|||||||
"""Use this method to send video messages.
|
"""Use this method to send video messages.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
video_note:
|
video_note (:obj:`str`):
|
||||||
Video note to send.
|
Video note to send.
|
||||||
Pass a file path as string to send a video note that exists on your local machine.
|
Pass a file path as string to send a video note that exists on your local machine.
|
||||||
|
|
||||||
duration:
|
duration (:obj:`int`, optional):
|
||||||
Duration of sent video in seconds.
|
Duration of sent video in seconds.
|
||||||
|
|
||||||
length:
|
length (:obj:`int`, optional):
|
||||||
Video width and height.
|
Video width and height.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message
|
If the message is a reply, ID of the original message
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -935,21 +960,22 @@ class Client:
|
|||||||
"""Use this method to send points on the map.
|
"""Use this method to send points on the map.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
latitude:
|
latitude (:obj:`float`):
|
||||||
Latitude of the location.
|
Latitude of the location.
|
||||||
|
|
||||||
longitude:
|
longitude (:obj:`float`):
|
||||||
Longitude of the location.
|
Longitude of the location.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message
|
If the message is a reply, ID of the original message
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -985,30 +1011,31 @@ class Client:
|
|||||||
"""Use this method to send information about a venue.
|
"""Use this method to send information about a venue.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
latitude:
|
latitude (:obj:`float`):
|
||||||
Latitude of the venue.
|
Latitude of the venue.
|
||||||
|
|
||||||
longitude:
|
longitude (:obj:`float`):
|
||||||
Longitude of the venue.
|
Longitude of the venue.
|
||||||
|
|
||||||
title:
|
title (:obj:`str`):
|
||||||
Name of the venue.
|
Name of the venue.
|
||||||
|
|
||||||
address:
|
address (:obj:`str`):
|
||||||
Address of the venue.
|
Address of the venue.
|
||||||
|
|
||||||
foursquare_id:
|
foursquare_id (:obj:`str`, optional):
|
||||||
Foursquare identifier of the venue.
|
Foursquare identifier of the venue.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message
|
If the message is a reply, ID of the original message
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -1047,24 +1074,25 @@ class Client:
|
|||||||
"""Use this method to send phone contacts.
|
"""Use this method to send phone contacts.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
phone_number:
|
phone_number (:obj:`str`):
|
||||||
Contact's phone number.
|
Contact's phone number.
|
||||||
|
|
||||||
first_name:
|
first_name (:obj:`str`):
|
||||||
Contact's first name.
|
Contact's first name.
|
||||||
|
|
||||||
last_name:
|
last_name (:obj:`str`):
|
||||||
Contact's last name.
|
Contact's last name.
|
||||||
|
|
||||||
disable_notification:
|
disable_notification (:obj:`bool`, optional):
|
||||||
Sends the message silently.
|
Sends the message silently.
|
||||||
Users will receive a notification with no sound.
|
Users will receive a notification with no sound.
|
||||||
|
|
||||||
reply_to_message_id:
|
reply_to_message_id (:obj:`int`, optional):
|
||||||
If the message is a reply, ID of the original message.
|
If the message is a reply, ID of the original message.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -1094,16 +1122,17 @@ class Client:
|
|||||||
"""Use this method when you need to tell the other party that something is happening on your side.
|
"""Use this method when you need to tell the other party that something is happening on your side.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
action:
|
action (:obj:`callable`):
|
||||||
Type of action to broadcast.
|
Type of action to broadcast.
|
||||||
Choose one from the :class:`pyrogram.ChatAction` class,
|
Choose one from the :class:`pyrogram.ChatAction` class,
|
||||||
depending on what the user is about to receive.
|
depending on what the user is about to receive.
|
||||||
|
|
||||||
progress:
|
progress (:obj:`int`, optional):
|
||||||
Progress of the upload process.
|
Progress of the upload process.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -1123,14 +1152,14 @@ class Client:
|
|||||||
"""Use this method to get a list of profile pictures for a user.
|
"""Use this method to get a list of profile pictures for a user.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
user_id:
|
user_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier of the target user.
|
Unique identifier of the target user.
|
||||||
|
|
||||||
offset:
|
offset (:obj:`int`, optional):
|
||||||
Sequential number of the first photo to be returned.
|
Sequential number of the first photo to be returned.
|
||||||
By default, all photos are returned.
|
By default, all photos are returned.
|
||||||
|
|
||||||
limit:
|
limit (:obj:`int`, optional):
|
||||||
Limits the number of photos to be retrieved.
|
Limits the number of photos to be retrieved.
|
||||||
Values between 1—100 are accepted. Defaults to 100.
|
Values between 1—100 are accepted. Defaults to 100.
|
||||||
|
|
||||||
@ -1154,17 +1183,18 @@ class Client:
|
|||||||
"""Use this method to edit text messages.
|
"""Use this method to edit text messages.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
message_id:
|
message_id (:obj:`int`):
|
||||||
Message identifier in the chat specified in chat_id.
|
Message identifier in the chat specified in chat_id.
|
||||||
|
|
||||||
text:
|
text (:obj:`str`):
|
||||||
New text of the message.
|
New text of the message.
|
||||||
|
|
||||||
disable_web_page_preview:
|
disable_web_page_preview (:obj:`bool`, optional):
|
||||||
Disables link previews for links in this message.
|
Disables link previews for links in this message.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -1186,14 +1216,15 @@ class Client:
|
|||||||
"""Use this method to edit captions of messages.
|
"""Use this method to edit captions of messages.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username). For your personal cloud storage (Saved Messages) you can
|
||||||
|
simply use "me" or "self".
|
||||||
|
|
||||||
message_id:
|
message_id (:obj:`int`):
|
||||||
Message identifier in the chat specified in chat_id.
|
Message identifier in the chat specified in chat_id.
|
||||||
|
|
||||||
caption:
|
caption (:obj:`str`):
|
||||||
New caption of the message.
|
New caption of the message.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -1219,10 +1250,10 @@ class Client:
|
|||||||
- If the user has *can_delete_messages* permission in a supergroup or a channel, it can delete any message there.
|
- If the user has *can_delete_messages* permission in a supergroup or a channel, it can delete any message there.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
message_ids:
|
message_ids (:obj:`list`):
|
||||||
List of identifiers of the messages to delete.
|
List of identifiers of the messages to delete.
|
||||||
|
|
||||||
revoke:
|
revoke (:obj:`bool`, optional):
|
||||||
Deletes messages on both parts (for private chats).
|
Deletes messages on both parts (for private chats).
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -1441,9 +1472,9 @@ class Client:
|
|||||||
"""Use this method to join a group chat or channel.
|
"""Use this method to join a group chat or channel.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`str`):
|
||||||
Unique identifier for the target chat in form of *t.me/joinchat/* links or username of the target
|
Unique identifier for the target chat in form of *t.me/joinchat/* links or username of the target
|
||||||
channel (in the format @channelusername)
|
channel/supergroup (in the format @username).
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:class:`pyrogram.Error`
|
:class:`pyrogram.Error`
|
||||||
@ -1478,11 +1509,11 @@ class Client:
|
|||||||
"""Use this method to leave a group chat or channel.
|
"""Use this method to leave a group chat or channel.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username).
|
||||||
|
|
||||||
delete:
|
delete (:obj:`bool`, optional):
|
||||||
Deletes the group chat dialog after leaving (for simple group chats, not supergroups).
|
Deletes the group chat dialog after leaving (for simple group chats, not supergroups).
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
@ -1520,9 +1551,9 @@ class Client:
|
|||||||
The user must be an administrator in the chat for this to work and must have the appropriate admin rights.
|
The user must be an administrator in the chat for this to work and must have the appropriate admin rights.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
chat_id:
|
chat_id (:obj:`int` | :obj:`str`):
|
||||||
Unique identifier for the target chat or username of the target channel
|
Unique identifier for the target chat or username of the target channel/supergroup
|
||||||
(in the format @channelusername).
|
(in the format @username).
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
On success, the exported invite link as string is returned.
|
On success, the exported invite link as string is returned.
|
||||||
|
Loading…
Reference in New Issue
Block a user