mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 20:59:29 +00:00
14 lines
296 B
ReStructuredText
14 lines
296 B
ReStructuredText
|
get_dialogs
|
||
|
===========
|
||
|
|
||
|
This example shows how to get the full dialogs list (as user).
|
||
|
|
||
|
.. code-block:: python
|
||
|
|
||
|
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)
|