set_slow_mode()#
- Client.set_slow_mode()#
Set the slow mode interval for a chat.
Usable by Users Bots- Parameters:
chat_id (
int
|str
) – Unique identifier (int) or username (str) of the target chat.seconds (
int
|None
) – Seconds in which members will be able to send only one message per this interval. Valid values are: 0 or None (off), 10, 30, 60 (1m), 300 (5m), 900 (15m) or 3600 (1h).
- Returns:
bool
– True on success.
Example
# Set slow mode to 60 seconds await app.set_slow_mode(chat_id, 60) # Disable slow mode await app.set_slow_mode(chat_id, None)