make discord bot with python simple code example
Example: 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__")