message all users in guild discord.py code example

Example 1: discord.py read embed on message

@client.event
async def on_message(message):
	embeds = message.embeds
    for embed in embeds:
        print(embed.to_dict())

Example 2: create a role with discord.py

@client.command(aliases=['make_role'])
@commands.has_permissions(manage_roles=True) # Check if the user executing the command can manage roles
async def create_role(ctx, *, name):
	guild = ctx.guild
	await guild.create_role(name=name)
	await ctx.send(f'Role `{name}` has been created')