ConnectHandler

class pyrogram.handlers.ConnectHandler

Bases: Handler

The Connect handler class. Used to handle connections. It is intended to be used with add_handler()

For a nicer way to register this handler, have a look at the on_connect() decorator.

Parameters:

callback (Callable) – Pass a function that will be called when a connection occurs. It takes (client) as positional argument (look at the section below for a detailed description).

Other Parameters:
  • client (Client) – The Client itself. Useful, for example, when you want to change the proxy before a new connection is established.

  • session (Session) – The Session used for the connection.