how to make embed messages and send the using trigger (await) #8099
Unanswered
ORGINRISHITH
asked this question in
Q&A
Replies: 1 comment
-
If you mean to say how to send discord Embeds then here's the example how it is done. embed = discord.Embed(title="Title of Embed", description="Embed description", color=0xADD8E6)
await ctx.send(embed=embed) Embed can be send using valid python dictionary embed = discord.Embed.from_dict({"title": "Title of Embed", "description": "Embed description"})
await message.channel.send(embed=embed) You can also add Embed field, Images, Thumbnails, Footer. Everything is documented here |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
pls tell how to make embed and add embed messages
Beta Was this translation helpful? Give feedback.
All reactions