mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Add Ping method
Signed-off-by: Ling-ex <nekochan@rizkiofficial.com>
This commit is contained in:
parent
04c25b760f
commit
7f5547a6a8
3 changed files with 49 additions and 0 deletions
|
|
@ -146,6 +146,7 @@ def pyrogram_api():
|
||||||
stop_transmission
|
stop_transmission
|
||||||
export_session_string
|
export_session_string
|
||||||
set_parse_mode
|
set_parse_mode
|
||||||
|
ping
|
||||||
""",
|
""",
|
||||||
conversation="""
|
conversation="""
|
||||||
Conversation
|
Conversation
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
from .add_handler import AddHandler
|
from .add_handler import AddHandler
|
||||||
from .export_session_string import ExportSessionString
|
from .export_session_string import ExportSessionString
|
||||||
|
from .ping import Ping
|
||||||
from .remove_handler import RemoveHandler
|
from .remove_handler import RemoveHandler
|
||||||
from .remove_error_handler import RemoveErrorHandler
|
from .remove_error_handler import RemoveErrorHandler
|
||||||
from .restart import Restart
|
from .restart import Restart
|
||||||
|
|
@ -32,6 +33,7 @@ from .stop_transmission import StopTransmission
|
||||||
class Utilities(
|
class Utilities(
|
||||||
AddHandler,
|
AddHandler,
|
||||||
ExportSessionString,
|
ExportSessionString,
|
||||||
|
Ping,
|
||||||
RemoveHandler,
|
RemoveHandler,
|
||||||
RemoveErrorHandler,
|
RemoveErrorHandler,
|
||||||
Restart,
|
Restart,
|
||||||
|
|
|
||||||
46
pyrogram/methods/utilities/ping.py
Normal file
46
pyrogram/methods/utilities/ping.py
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
# Pyrofork - Telegram MTProto API Client Library for Python
|
||||||
|
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
||||||
|
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
|
||||||
|
#
|
||||||
|
# This file is part of Pyrofork.
|
||||||
|
#
|
||||||
|
# Pyrofork 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.
|
||||||
|
#
|
||||||
|
# Pyrofork 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 Pyrofork. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
from time import time
|
||||||
|
|
||||||
|
import pyrogram
|
||||||
|
from pyrogram import raw
|
||||||
|
|
||||||
|
|
||||||
|
class Ping:
|
||||||
|
async def ping(self: "pyrogram.Client"):
|
||||||
|
"""Measure the round-trip time (RTT) to the Telegram server.
|
||||||
|
|
||||||
|
The ping method sends a request to the Telegram server and measures the time it takes to receive a response.
|
||||||
|
This can be useful for monitoring network latency and ensuring a stable connection to the server.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
float: The round-trip time in milliseconds (ms).
|
||||||
|
|
||||||
|
Example:
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
latency = await app.ping()
|
||||||
|
print(f"Ping: {latency} ms")
|
||||||
|
"""
|
||||||
|
start_time = time()
|
||||||
|
await self.invoke(
|
||||||
|
raw.functions.ping.Ping(ping_id=self.rnd_id()),
|
||||||
|
)
|
||||||
|
return round((time() - start_time) * 1000.0, 3)
|
||||||
Loading…
Reference in a new issue