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-06-19 11:48:49 +00:00
|
|
|
import asyncio
|
2018-12-19 14:59:15 +00:00
|
|
|
from typing import Iterable, Union, List
|
2018-06-19 11:48:49 +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:49:01 +00:00
|
|
|
async def get_users(
|
2019-03-16 18:23:23 +00:00
|
|
|
self,
|
|
|
|
user_ids: Iterable[Union[int, str]]
|
|
|
|
) -> 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.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
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:
|
2018-12-19 14:59:15 +00:00
|
|
|
On success and in case *user_ids* was an iterable, the returned value will be a list of the requested
|
2018-05-07 12:30:55 +00:00
|
|
|
:obj:`Users <User>` even if a list contains just one element, otherwise if
|
2018-12-19 14:59:15 +00:00
|
|
|
*user_ids* was an integer or string, the single requested :obj:`User` is returned.
|
2018-05-07 12:30:55 +00:00
|
|
|
|
|
|
|
Raises:
|
2019-03-25 10:10:46 +00:00
|
|
|
:class:`RPCError <pyrogram.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]
|
2018-06-19 11:48:49 +00:00
|
|
|
user_ids = await asyncio.gather(*[self.resolve_peer(i) for i in user_ids])
|
2018-05-07 12:30:55 +00:00
|
|
|
|
2018-06-19 11:48:49 +00:00
|
|
|
r = await self.send(
|
2018-05-07 12:30:55 +00:00
|
|
|
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]
|