simple discord bot python code code example

Example 1: bot discord python

import discord
from discord.ext import commands

bot = commands.Bot(command_prefix="!", description="The description")

@bot.event
async def  on_ready():
    print("Ready !")

@bot.command()
async def ping(ctx):
    await ctx.send('**pong**')

bot.run("enter the token here between the quotes")

Example 2: discord python bot

from discord.ext import commands

bot = commands.Bot(command_prefix="^^")
async def on_ready():
	print("Logged in as - {} | {}".format(bot.user, bot.user.id))
	print("Invite link | https://discord.com/oauth2/authorize?client_id={}&scope=bot&permissions=8".format(
			bot.user.id))

bot.run("__TOKEN__")