Metadata-Version: 2.1
Name: simplecmd_discordpy
Version: 1.0.9
Summary: Uma biblioteca mais simples para a criação de comandos no Discord.py
Author: Anão Lenda
Author-email: 4x0bfuscator@gmail.com
License: MIT
Keywords: simplecmd discordpy comandos
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: AsyncIO
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: discord

## **Welcome!!**

**(PT:BR) - Uma biblioteca para criar comandos para o Discord.py!!, lembrando que não quero substituir nada estou apenas tentando criar algo com a estrutura mais simples para os iniciantes**
**(ENG) - A library to create commands for Discord.py!!, remembering that I don't want to replace anything, I'm just trying to create something with the simplest structure for beginners**

## Usage example
```python
import simplecmd_discordpy as scmd
import discord

scmd.config.set(logs=True, prefix=f"$") # Seta as configurações necessárias

intents = discord.Intents.default()
client = discord.Client(intents=intents)

@scmd.command("ping") # Função para criar comandos
async def ping_cmd(msg, *args):
    if args:
        await msg.channel.send(f"Pong🏓" + ''.join(args[0]), reference=msg)
    else:
        await msg.channel.send(f"Pong🏓", reference=msg)

@client.event
async def on_ready():
    print(f"[{client.user.name}] - Online!!")

@client.event
async def on_message(message):
    if message.author.bot:
        return
    if message.author.id == client.user.id:
        return
    await scmd.load(message) # Carrega Todos Os Comandos
```
