Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 296 Bytes

File metadata and controls

14 lines (9 loc) · 296 Bytes

get_dialogs

This example shows how to get the full dialogs list (as user).

from pyrogram import Client

app = Client("my_account")

with app:
    for dialog in app.iter_dialogs():
        print(dialog.chat.title or dialog.chat.first_name)