Learnmonkey Learnmonkey Logo
× Warning:

The tutorial you are reading is currently a work in-progress.

Discord.py Embeds

What is an Embed?

An embed is basically a fancy message that can have images, content, fields, and more. They are an incredibly powerful tool.

An example of a Discord.py embed

Making an Embed

Embeds are created using the discord.Embed object. Below is the general format for creating an embed:

discord.Embed(title="title", description="content")

For example:


discord.Embed(title="Example Embed", description="An example of an embed")
    

The above embed looks like:

To send an embed, we type:


await ctx.send(embed=embed variable name)
    

Embed Generator

There is a very handy tool which generates embeds for you.