pin python discord bot code example
Example 1: Discord.py bot example
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='prefix here')
@bot.event
async def on_ready():
print('Logged in as: ' + bot.user.name)
print('Ready!\n')
@bot.command()
async def commandname(ctx, *, somevariable)
Code goes here
await ctx.send('Message')
bot.run('yourtoken')
Example 2: How to setup discord.py bot
import discord
from discord.ext import commands
import asyncio
client = commands.Bot(command_prefix='!')
token = 'YOUR TOKEN HERE'
@client.command()
async def hello(ctx):
await ctx.send('Hello I am a Test Bot!')
@client.event
async def on_ready():
print('Hello, I am now running')
client.run(token)