import discord
from discord.ext import commands
intents = discord.Intents.all()
bot = commands.Bot(command_prefix='>', intents=intents, self_bot=True)
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run('Токен Аккаунта дискорд',bot=False)