2019-05-10 15:15:46 +00:00
|
|
|
"""This example shows how to get the full dialogs list (as user)."""
|
2019-01-07 09:33:09 +00:00
|
|
|
|
|
|
|
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)
|