Source code for pyrogram.raw.functions.messages.search_stickers
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <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/>.
from io import BytesIO
from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram import raw
from typing import List, Optional, Any
# # # # # # # # # # # # # # # # # # # # # # # #
# !!! WARNING !!! #
# This is a generated file! #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #
[docs]
class SearchStickers(TLObject): # type: ignore
"""Search for stickers using AI-powered keyword search
.. include:: /_includes/usable-by/users.rst
Details:
- Layer: ``229``
- ID: ``29B1C66A``
Parameters:
q (``str``):
The search term
emoticon (``str``):
Space-separated list of emojis to search for
lang_code (List of ``str``):
List of possible IETF language tags of the user's input language; may be empty if unknown
offset (``int`` ``32-bit``):
`Offset for pagination <https://core.telegram.org/api/offsets>`_
limit (``int`` ``32-bit``):
Maximum number of results to return, `see pagination <https://core.telegram.org/api/offsets>`_
hash (``int`` ``64-bit``):
`Hash used for caching, for more info click here <https://core.telegram.org/api/offsets#hash-generation>`_. The hash may be generated locally by using the ``id`` s of the returned or stored sticker `document <https://core.telegram.org/constructor/document>`_ s.
emojis (``bool``, *optional*):
If set, returns `custom emoji stickers <https://core.telegram.org/api/custom-emoji>`_
Returns:
:obj:`messages.FoundStickers <pyrogram.raw.base.messages.FoundStickers>`
"""
__slots__: List[str] = ["q", "emoticon", "lang_code", "offset", "limit", "hash", "emojis"]
ID = 0x29b1c66a
QUALNAME = "functions.messages.SearchStickers"
def __init__(self, *, q: str, emoticon: str, lang_code: List[str], offset: int, limit: int, hash: int, emojis: Optional[bool] = None) -> None:
self.q = q # string
self.emoticon = emoticon # string
self.lang_code = lang_code # Vector<string>
self.offset = offset # int
self.limit = limit # int
self.hash = hash # long
self.emojis = emojis # flags.0?true
@staticmethod
def read(b: BytesIO, *args: Any) -> "SearchStickers":
flags = Int.read(b)
emojis = True if flags & (1 << 0) else False
q = String.read(b)
emoticon = String.read(b)
lang_code = TLObject.read(b, String)
offset = Int.read(b)
limit = Int.read(b)
hash = Long.read(b)
return SearchStickers(q=q, emoticon=emoticon, lang_code=lang_code, offset=offset, limit=limit, hash=hash, emojis=emojis)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.emojis else 0
b.write(Int(flags))
b.write(String(self.q))
b.write(String(self.emoticon))
b.write(Vector(self.lang_code, String))
b.write(Int(self.offset))
b.write(Int(self.limit))
b.write(Long(self.hash))
return b.getvalue()