You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Original `discord.py <https://pypi.org/project/discord.py>`_ Library made by `Rapptz <https://github.com/Rapptz>`_ with implementation of the `Discord-Message-Components <https://discord.com/developers/docs/interactions/message-components>`_ by `mccoderpy <https://github.com/mccoderpy/>`_
Open a Issue/Pull request on `GitHub <https://github.com/mccoderpy/discord.py-message-components/pulls>`_, join the `support-Server <https://discord.gg/sb69muSqsg>`_ or send me a direct-message on `Discord <https://discord.com/channels/@me>`_: ``mccuber04#2960``
30
+
The Original `discord.py <https://pypi.org/project/discord.py/1.7.3>`_ Library made by `Rapptz <https://github.com/Rapptz>`_ with implementation of the `Discord-Message-Components <https://discord.com/developers/docs/interactions/message-components>`_ by `mccoderpy <https://github.com/mccoderpy/>`_
31
+
32
+
.. figure:: images/rtd-logo-wordmark-light.png
33
+
:name:discord.py-message-components documentation
34
+
:alt:Link to the documentation of discord.py-message-components
**Read the Documentation** `here <https://discordpy-message-components.readthedocs.io/en/latest/>`_
40
+
41
+
You need help? Or have ideas/feedback?
42
+
______________________________________
33
43
44
+
Open a Issue/Pull request on `GitHub <https://github.com/mccoderpy/discord.py-message-components/pulls>`_, join the `support-Server <https://discord.gg/sb69muSqsg>`_ or send me a direct-message on `Discord <https://discord.com/channels/@me>`_: ``mccuber04#2960``
34
45
35
46
Installing
36
47
__________
37
48
38
49
**Python 3.5.3 or higher is required**
39
50
40
-
first uninstall the original `discord.py <https://pypi.org/project/discord.py>`_ Library:
51
+
This Library overwrite the original discord.py Library so to be sure all will work fine
52
+
first uninstall the original `discord.py <https://pypi.org/project/discord.py/1.7.3>`_ Library if it is installed:
41
53
42
54
.. code:: sh
43
55
@@ -47,7 +59,7 @@ first uninstall the original `discord.py <https://pypi.org/project/discord.py>`_
47
59
# Windows
48
60
py -3 -m pip uninstall discord.py
49
61
50
-
then install `this Library <https://pypi.org/project/discord.py-message-components>`_ using:
62
+
Then install `this Library <https://pypi.org/project/discord.py-message-components>`_ using:
51
63
52
64
.. code:: sh
53
65
@@ -68,7 +80,7 @@ A Command that sends you a Message and edit it when you click a Button:
68
80
import typing
69
81
import discord
70
82
from discord.ext import commands
71
-
from discord import ActionRow, Button, ButtonColor
83
+
from discord import ActionRow, Button, ButtonStyle
# This sends the Discord-API that the interaction has been received and is being "processed"
104
-
await interaction.defer() # if this is not used and you also do not edit the message within 3 seconds as described below, Discord will indicate that the interaction has failed.
117
+
await interaction.defer()
118
+
# if this is not used and you also do not edit the message within 3 seconds as described below,
119
+
# Discord will indicate that the interaction has failed.
105
120
106
-
# If you use interaction.edit instead of interaction.message.edit, you do not have to deffer the interaction if your response does not last longer than 3 seconds.
121
+
# If you use interaction.edit instead of interaction.message.edit, you do not have to defer the interaction,
122
+
# if your response does not last longer than 3 seconds.
107
123
await interaction.edit(embed=an_embed.add_field(name='Choose', value=f'Your Choose was `{button_id}`'),
0 commit comments