Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a discord bot in python

import discord
from discord.ext import commands

client = commands.Bot(command_prefix=".")

@client.event
async def on_ready():
    print("Ready!")

bot.run("TOKEN")
 
PREVIOUS NEXT
Tagged: #discord #bot #python
ADD COMMENT
Topic
Name
8+6 =