#Download Stickers

1 messages · Page 1 of 1 (latest)

versed spruce
#

Hey, is there a way to download stickers sent in messages?

torpid parrotBOT
#

Hey! Once your issue is solved, press the button below to close this thread!

versed spruce
#

Download Stickers

topaz ermine
#

the lib doesnt really have many helpers around stickers

#

here. this should give you more or less what you need

@listen()
async def on_message_create(event: MessageCreate):
    message: Message = event.message

    if message.sticker_items:
        base = "https://media.discordapp.net/stickers/{}.webp"
        for sticker_item in message.sticker_items:
            url = base.format(sticker_item.id)
            print(url)
versed spruce
#

Thanks!