pyrogram/examples/chat_members.py
2019-01-07 10:34:38 +01:00

11 lines
269 B
Python

"""This example shows how to get all the members of a chat."""
from pyrogram import Client
app = Client("my_count")
target = "pyrogramchat" # Target channel/supergroup
with app:
for member in app.iter_chat_members(target):
print(member.user.first_name)