Answers for "discord py on _messae"

3

discordpy base code

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('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 July-15-2020
1

get guild from a channel discord py

channel.guild
Posted by: Guest on January-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language