pyrogram/docs/source/start/examples/get_chat_members.rst

22 lines
402 B
ReStructuredText
Raw Normal View History

get_chat_members
================
This example shows how to get all the members of a chat.
.. code-block:: python
from pyrogram import Client
2022-04-24 09:56:07 +00:00
# Target channel/supergroup
TARGET = -100123456789
app = Client("my_account")
2022-04-24 09:56:07 +00:00
async def main():
async with app:
async for member in app.get_chat_members(TARGET):
print(member)
app.run(main())