Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

YummyOreo/bot-Plus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bot Plus


Set up a Python Discord bot quickly!

Install:

To intall this package:

$ pip install botPlus

Set Up a simple bot:

import discord
from discord.ext import commands
import botPlus

# Makes the bot 
client = botPlus.bot({'logging': 'advanced', "prefix": "!"})
bot = client.make()

# A command
@bot.command()
async def foo(ctx, arg):
    await ctx.send(arg)

# Runs the bot
client.run('')

Docs:

Coming Soon