Answers for "embed pages discord.py"

1

link in embed discord.py

embed.add_field(name="Field 1 Title", value="[This is the text](Here is the URL)")
Posted by: Guest on May-27-2021
0

discord.py embeds

@client.command()
async def embed(ctx):
    embed=discord.Embed(title="Sample Embed", url="https://realdrewdata.medium.com/", description="This is an embed that will show how to build an embed and the different components", color=0xFF5733)
    await ctx.send(embed=embed)
Posted by: Guest on December-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language