U
    ç;ã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d„ZdS )ÚRunNzpyrogram.Client)Úselfc                 C   sn   t  ¡ }|j}|dk	r ||ƒ nJt | j¡rP||  ¡ ƒ |tƒ ƒ ||  ¡ ƒ n|  ¡  |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)ÚasyncioZget_event_loopZrun_until_completeÚinspectÚiscoroutinefunctionÚstartr   Ústop)r   Ú	coroutineÚloopÚrun© r   ú^/opt/bot/vods_filmes/script/venv/lib/python3.8/site-packages/pyrogram/methods/utilities/run.pyr      s    .


zRun.run)N)Ú__name__Ú
__module__Ú__qualname__r   r   r   r   r   r      s    þÿr   )r   r   ZpyrogramZpyrogram.methods.utilities.idler   r   r   r   r   r   Ú<module>   s   