pyrogram/examples/get_participants.py

64 lines
2.1 KiB
Python
Raw Normal View History

# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-02-26 14:49:07 +00:00
import time
from pyrogram import Client
from pyrogram.api import functions, types
from pyrogram.api.errors import FloodWait
2018-05-06 09:56:25 +00:00
"""This simple GetParticipants method usage shows you how to get the first 10.000 users of a chat.
Refer to get_participants2.py for more than 10.000 users.
"""
2018-04-14 16:46:54 +00:00
app = Client("my_account")
2018-05-06 09:56:25 +00:00
target = "pyrogramchat" # Target channel/supergroup
2018-02-26 14:49:07 +00:00
users = [] # List that will contain all the users of the target chat
limit = 200 # Amount of users to retrieve for each API call
offset = 0 # Offset starts at 0
2018-06-22 11:30:18 +00:00
app.start()
2018-02-26 14:49:07 +00:00
while True:
try:
2018-04-14 16:46:54 +00:00
participants = app.send(
2018-02-26 14:49:07 +00:00
functions.channels.GetParticipants(
2018-04-14 16:46:54 +00:00
channel=app.resolve_peer(target),
2018-02-26 14:49:07 +00:00
filter=types.ChannelParticipantsSearch(""), # Filter by empty string (search for all)
offset=offset,
limit=limit,
hash=0
)
)
except FloodWait as e:
# Very large channels will trigger FloodWait.
# When happens, wait X seconds before continuing
time.sleep(e.x)
continue
if not participants.participants:
break # No more participants left
users.extend(participants.users)
offset += limit
2018-04-14 16:46:54 +00:00
app.stop()
2018-02-26 16:01:33 +00:00
2018-02-26 14:49:07 +00:00
# Now the "users" list contains all the members of the target chat