Answers for "how to have a discord.py bot always online"

1

discord.py get a bot online

import discord
import asyncio

client = discord.Client

@client.event():
	async def on_ready():
    	print('Online')
        
client.run('your token') #you get a token if you create a bot on the discord developer page
Posted by: Guest on May-07-2021

Code answers related to "how to have a discord.py bot always online"

Browse Popular Code Answers by Language