2018-05-07 12:30:55 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2019-01-01 11:36:16 +00:00
|
|
|
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
|
2018-05-07 12:30:55 +00:00
|
|
|
#
|
|
|
|
# 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-12-19 14:59:15 +00:00
|
|
|
from typing import Iterable, Union, List
|
2018-12-19 13:50:23 +00:00
|
|
|
|
2018-12-17 15:27:16 +00:00
|
|
|
import pyrogram
|
2018-05-07 12:30:55 +00:00
|
|
|
from pyrogram.api import functions
|
2018-12-17 15:27:16 +00:00
|
|
|
from ...ext import BaseClient
|
2018-05-07 12:30:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GetUsers(BaseClient):
|
2019-03-16 18:23:23 +00:00
|
|
|
def get_users(
|
|
|
|
self,
|
2019-05-10 14:14:10 +00:00
|
|
|
user_ids: Union[Iterable[Union[int, str]], int, str]
|
2019-03-16 18:23:23 +00:00
|
|
|
) -> Union["pyrogram.User", List["pyrogram.User"]]:
|
2018-05-07 12:30:55 +00:00
|
|
|
"""Use this method to get information about a user.
|
|
|
|
You can retrieve up to 200 users at once.
|
|
|
|
|
2019-05-09 02:28:46 +00:00
|
|
|
Parameters:
|
2018-05-07 12:30:55 +00:00
|
|
|
user_ids (``iterable``):
|
|
|
|
A list of User identifiers (id or username) or a single user id/username.
|
|
|
|
For a contact that exists in your Telegram address book you can use his phone number (str).
|
|
|
|
Iterators and Generators are also accepted.
|
|
|
|
|
|
|
|
Returns:
|
2019-05-09 02:28:46 +00:00
|
|
|
:obj:`User`: In case *user_ids* was an integer or string.
|
|
|
|
|
|
|
|
List of :obj:`User` -- In case *user_ids* was an iterable, even if the iterable contained one item only.
|
2018-05-07 12:30:55 +00:00
|
|
|
|
|
|
|
Raises:
|
2019-05-09 02:28:46 +00:00
|
|
|
RPCError: In case of a Telegram RPC error.
|
2018-05-07 12:30:55 +00:00
|
|
|
"""
|
|
|
|
is_iterable = not isinstance(user_ids, (int, str))
|
|
|
|
user_ids = list(user_ids) if is_iterable else [user_ids]
|
|
|
|
user_ids = [self.resolve_peer(i) for i in user_ids]
|
|
|
|
|
|
|
|
r = self.send(
|
|
|
|
functions.users.GetUsers(
|
|
|
|
id=user_ids
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
users = []
|
|
|
|
|
|
|
|
for i in r:
|
2018-12-19 13:50:23 +00:00
|
|
|
users.append(pyrogram.User._parse(self, i))
|
2018-05-07 12:30:55 +00:00
|
|
|
|
|
|
|
return users if is_iterable else users[0]
|