discord py send message embed code example
Example: discord.py read embed on message
@client.event
async def on_message(message):
embeds = message.embeds
for embed in embeds:
print(embed.to_dict())
@client.event
async def on_message(message):
embeds = message.embeds
for embed in embeds:
print(embed.to_dict())