W
Size: a a a
W
⟁ᴡ
from telethon.tl.types import ChannelParticipantAdmin, ChannelParticipantCreator
[
user.id
for user in await client.get_participants(event.chat_id)
if not user.bot
and not user.deleted
and (
isinstance(user.participant, ChannelParticipantAdmin)
or isinstance(user.participant, ChannelParticipantCreator)
)
]
W
𝙰𝙺
JK
JK
async for message in client.iter_messages(URL):print(message)
JK
MM
JK
MM
MD
MD
DD
DD
MD
MD
DD
MD
DD