Last active
September 18, 2021 10:03
-
-
Save NixonXC/1728cf766595238233c7b11decda2fdc to your computer and use it in GitHub Desktop.
embed pycord
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@bot.command() | |
async def embed(ctx): | |
embed=discord.Embed(title="Sample Embed", url="https://nixonxc.github.io/PyCord-Guide/", description="This is an embed that will show how to build an embed and the different components", color=0xFF5733) | |
await ctx.send(embed=embed) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment