update_status()#

Client.update_status()#

Update your profile status.

Usable by Users Bots
Parameters:

offline (bool) – The new status. Pass True to appear offline.

Returns:

bool – True on success.

Example

# Change status to online
await app.update_status()

# Change status to offline
await app.update_status(offline=True)