1import discord
2from discord.ext import commands
3
4bot = commands.Bot(command_prefix="!", description="The description")
5
6@bot.event
7async def on_ready():
8 print("Ready !")
9
10@bot.command()
11async def ping(ctx):
12 await ctx.send('**pong**')
13
14bot.run("enter the token here between the quotes")