getStickerSet¶
Returns: StickerSet
- class litegram.methods.get_sticker_set.GetStickerSet(*, name: str, **extra_data: Any)[source]¶
Use this method to get a sticker set. On success, a
litegram.types.sticker_set.StickerSetobject is returned.
Usage¶
As bot method¶
result: StickerSet = await bot.get_sticker_set(...)
Method as object¶
Imports:
from litegram.methods.get_sticker_set import GetStickerSetalias:
from litegram.methods import GetStickerSet
With specific bot¶
result: StickerSet = await bot(GetStickerSet(...))