A
A
Andrey Prenrek2021-09-14 23:49:27
Python
Andrey Prenrek, 2021-09-14 23:49:27

How to view group administrators in telegram using telethon?

How to do this, I already looked at a lot of things, it did not help ...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
soremix, 2021-09-15
@SoreMix

from telethon.tl.types import ChatParticipantCreator, ChatParticipantAdmin

for user in client.get_participants(chat, aggressive=True):
    if isinstance(user.participant, ChatParticipantAdmin) or isinstance(user.participant, ChatParticipantCreator):
        print(user.first_name)

Where `chat` is the entity of the desired group
https://docs.telethon.dev/en/latest/modules/client...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question