MTPyroger/examples/get_dialogs.py
2020-03-21 15:43:32 +01:00

10 lines
234 B
Python

"""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)