Skip to content

Instantly share code, notes, and snippets.

MTA3MDgyNTAzMTk4NDIyMjM0OA.GFfNJv.lXKZMW3sCQ04456K8HjFhG43HNXAZlzFBNtR3w
@helish88
helish88 / buttons.py
Created December 6, 2021 17:24
пример кнопочек на discord.py 2.0
import discord
from discord.ext import commands
class MyCustomButton(discord.ui.Button):
def __init__(self, style: discord.ButtonStyle, label: str, custom_id: str):
super().__init__(style=style, label=label, disabled=False, custom_id=custom_id)
self.style = style
self.value = label
self.custom_id = custom_id