learn python discord bot code example
Example 1: discord bot python
import discord.py
client = discord.Client()
@client.event
async def on_ready():
print("Logged in as {0.user}".format(client)
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content == '.hello':
print("Hello there!!")
client.run('here put your token')
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__")