get_dialogs()

Client.get_dialogs()

Get a user’s dialogs sequentially.

Usable by Users Bots

Parameters:

limit (int, optional) – Limits the number of dialogs to be retrieved. By default, no limit is applied and all dialogs are returned.

Returns:

Generator – A generator yielding Dialog objects.

Example

async for dialog in app.get_dialogs():
    print(dialog.chat.first_name or dialog.chat.title)