Answers for "discrod python package"

1

discord.py pip

py -3 -m pip install -U discord.py
Posted by: Guest on October-22-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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language