Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 347 Bytes

File metadata and controls

15 lines (10 loc) · 347 Bytes

get_chat_members

This example shows how to get all the members of a chat.

from pyrogram import Client

app = Client("my_account")
target = "pyrogramchat"  # Target channel/supergroup

with app:
    for member in app.iter_chat_members(target):
        print(member.user.first_name)