Metadata-Version: 2.1
Name: botPlus
Version: 1.2.3
Summary: Set up a Python Discord bot quickly!
Home-page: UNKNOWN
Author: OreoDivision
Author-email: <bobgim20@gmail.com>
License: UNKNOWN
Description: <h1 align="center">Bot Plus</h1>
        <h3 align="center"><a href="https://pypi.org/project/botPlus/">Website</a></h3>
        
        --- 
        
        Set up a Python Discord bot quickly!
        
        ## Install:
        To intall this package:
        ```console
        $ pip install botPlus
        ```
        
        ## Set Up a simple bot:
        ```py
        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
        
Keywords: python,discord,discord.py,bot,discord bot,quick
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
