import discord
from discord.ext import commands
from asyncio import sleep
from discord.utils import get
TOKEN = 'OOOOOOOOOOOO'
bot = commands.Bot(command_prefix='!')
@bot.command()
async def ping(ctx: commands.Context):
await ctx.send('Pong!')
bot.run(TOKEN)