how to download discord.py code example

Example 1: how to import discord in python

py -3 -m pip install -U discord.py

Example 2: import discord python

import discord

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