discord get auhtor id py code example

Example 1: how to get username with userid discord.py

username = client.get_user(user_id)

Example 2: How to create role discord.py

guild = ctx.guild
await guild.create_role(name="role name")

Example 3: 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')