create_sticker_set()
- Client.create_sticker_set()
Create a new stickerset.
Usable by Users Bots
- Parameters:
user_id (
int
|str
) – Unique identifier (int) or username (str) of the Stickerset owner. For you yourself you can simply use “me” or “self” (users only).title (
str
) – Stickerset name, 1-64 charsshort_name (
str
, optional) – Short name of sticker set, to be used in sticker deep links. Can contain only english letters, digits and underscores. Must begin with a letter, can’t contain consecutive underscores and, if called by a bot, must end in “_by_<bot_username>”. <bot_username> is case insensitive. 1-64 characters.sticker (
str
) – sticker to add. Pass a file_id as string to send a file that exists on the Telegram servers.emoji (
str
, optional) – Associated emoji. default to “🤔”masks (
bool
, optional) – Whether this is a mask stickerset.
- Returns:
StickerSet
|None
– On success, the StickerSet is returned.
Example
# Send document by uploading from local file await app.create_sticker_set("me", "My First Pack", "myfirstpack", "AAjjHjk")