o
    
À{g)  ã                   @   s6   d dl Z d dlZd dlZd dlmZ G dd„ dƒZdS )é    N)Úidlec                   @   s   e Zd Z	d	ddd„ZdS )ÚRunNÚselfúpyrogram.Clientc                 C   sr   t  ¡ }|j}|dur||ƒ dS t | j¡r*||  ¡ ƒ |tƒ ƒ ||  ¡ ƒ dS |  ¡  |tƒ ƒ |  ¡  dS )a–  Start the client, idle the main script and finally stop the client.

        When calling this method without any argument it acts as a convenience method that calls
        :meth:`~pyrogram.Client.start`, :meth:`~pyrogram.idle` and :meth:`~pyrogram.Client.stop` in sequence.
        It makes running a single client less verbose.

        In case a coroutine is passed as argument, runs the coroutine until it's completed and doesn't do any client
        operation. This is almost the same as :py:obj:`asyncio.run` except for the fact that Pyrogram's ``run`` uses the
        current event loop instead of a new one.

        If you want to run multiple clients at once, see :meth:`pyrogram.compose`.

        Parameters:
            coroutine (``Coroutine``, *optional*):
                Pass a coroutine to run it until it completes.

        Raises:
            ConnectionError: In case you try to run an already started client.

        Example:
            .. code-block:: python

                from pyrogram import Client

                app = Client("my_account")
                ...  # Set handlers up
                app.run()

            .. code-block:: python

                from pyrogram import Client

                app = Client("my_account")


                async def main():
                    async with app:
                        print(await app.get_me())


                app.run(main())
        N)ÚasyncioÚget_event_loopÚrun_until_completeÚinspectÚiscoroutinefunctionÚstartr   Ústop)r   Ú	coroutineÚloopÚrun© r   ú{/var/www/bot.gig.net.ua/public_html/telegram/P1/HellBot/venv/lib/python3.10/site-packages/pyrogram/methods/utilities/run.pyr      s   .

zRun.run)N)r   r   )Ú__name__Ú
__module__Ú__qualname__r   r   r   r   r   r      s
    þÿr   )r   r	   ÚpyrogramÚpyrogram.methods.utilities.idler   r   r   r   r   r   Ú<module>   s
   