Answers for "discord.py add attributes to class"

7

discord py get user by id

user = bot.get_user(user_id)
Posted by: Guest on May-21-2020
7

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')
Posted by: Guest on September-29-2020
9

discord.py

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith('$hello'):
        await message.channel.send('Hello!')

client.run('your token here')
Posted by: Guest on March-27-2020
0

discord py server.channels

# Returns a list of all channels from all guilds( as channel IDs )

bot.get_all_channels()
Posted by: Guest on December-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language