Source code for hydrogram.raw.functions.bots.get_bot_info
# Hydrogram - Telegram MTProto API Client Library for Python# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>## This file is part of Hydrogram.## Hydrogram 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.## Hydrogram 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 Hydrogram. If not, see <http://www.gnu.org/licenses/>.fromioimportBytesIOfromhydrogram.raw.core.primitivesimportInt,Long,Int128,Int256,Bool,Bytes,String,Double,Vectorfromhydrogram.raw.coreimportTLObjectfromhydrogramimportrawfromtypingimportList,Optional,Any# # # # # # # # # # # # # # # # # # # # # # # ## !!! WARNING !!! ## This is a generated file! ## All changes made in this file will be lost! ## # # # # # # # # # # # # # # # # # # # # # # #
[docs]classGetBotInfo(TLObject):# type: ignore"""Get localized name, about text and description of a bot (or of the current account, if called by a bot). Details: - Layer: ``181`` - ID: ``DCD914FD`` Parameters: lang_code (``str``): Language code, if left empty this method will return the fallback about text and description. bot (:obj:`InputUser <hydrogram.raw.base.InputUser>`, *optional*): If called by a user, must contain the peer of a bot we own. Returns: :obj:`bots.BotInfo <hydrogram.raw.base.bots.BotInfo>` """__slots__:List[str]=["lang_code","bot"]ID=0xdcd914fdQUALNAME="functions.bots.GetBotInfo"def__init__(self,*,lang_code:str,bot:"raw.base.InputUser"=None)->None:self.lang_code=lang_code# stringself.bot=bot# flags.0?InputUser@staticmethoddefread(b:BytesIO,*args:Any)->"GetBotInfo":flags=Int.read(b)bot=TLObject.read(b)ifflags&(1<<0)elseNonelang_code=String.read(b)returnGetBotInfo(lang_code=lang_code,bot=bot)defwrite(self,*args)->bytes:b=BytesIO()b.write(Int(self.ID,False))flags=0flags|=(1<<0)ifself.botisnotNoneelse0b.write(Int(flags))ifself.botisnotNone:b.write(self.bot.write())b.write(String(self.lang_code))returnb.getvalue()