Metadata-Version: 2.1
Name: yoshaas-gateway
Version: 2.0.0
Summary: Simple discord gateway library
Home-page: https://github.com/Yoshaa-pog/DiscordGateway
Author: Yoshaa
Author-email: notmyemail@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE


Simple way to interact with your discord bot.


**Installation**
```cmd
pip install yoshaas-gateway
```


**Example Usage**
```python
from discord_gateway import Intents
from discord_gateway.commands import CommandsBot

bot = CommandsBot(command_prefix='!', intents=Intents.All)

@bot.event
async def on_ready():
    print(bot.user.tag, 'is up')

@bot.command()
async def ping(ctx):
    await ctx.reply('pong!')

bot.run('TOKEN HERE', bot=True, log_level=40)  # Run the bot
```
