2018-01-23 14:34:36 +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-01-23 14:34:36 +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-18 08:45:49 +00:00
|
|
|
import pyrogram
|
2018-05-07 12:30:55 +00:00
|
|
|
from pyrogram.api import functions, types
|
2018-12-18 08:45:49 +00:00
|
|
|
from ...ext import BaseClient
|
2018-01-23 14:34:36 +00:00
|
|
|
|
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
class GetMe(BaseClient):
|
2018-12-22 10:22:58 +00:00
|
|
|
def get_me(self) -> "pyrogram.User":
|
2019-05-12 17:49:06 +00:00
|
|
|
"""Get your own user identity.
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
Returns:
|
2019-05-09 02:28:46 +00:00
|
|
|
:obj:`User`: Basic information about the user or bot.
|
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
|
|
|
"""
|
2018-12-19 13:50:23 +00:00
|
|
|
return pyrogram.User._parse(
|
2018-12-18 08:45:49 +00:00
|
|
|
self,
|
2018-05-07 14:45:05 +00:00
|
|
|
self.send(
|
|
|
|
functions.users.GetFullUser(
|
2019-03-16 15:50:40 +00:00
|
|
|
id=types.InputPeerSelf()
|
2018-05-07 14:45:05 +00:00
|
|
|
)
|
|
|
|
).user
|
2018-05-07 12:30:55 +00:00
|
|
|
)
|