restart()¶
- async Client.restart()¶
Restart the Client.
Usable by Users BotsThis method will first call
stop()and thenstart()in a row in order to restart a client using a single method. Restarting a client that is already stopped simply starts it.- Parameters:
block (
bool, optional) – Blocks the code execution until the client has been restarted. It is useful withblock=Falsein case you want to restart the own client within an handler in order not to cause a deadlock. Defaults to True.- Returns:
Client– The restarted client itself.
Example
from wzgram import Client app = Client("my_account") async def main(): await app.start() ... # Invoke API methods await app.restart() ... # Invoke other API methods await app.stop() app.run(main())