Metadata-Version: 2.1
Name: simplipy-python
Version: 0.0.6
Summary: Create simple commands.
Home-page: https://replit.com/@AutumnApple/SimpleCommands#simplipy-python/
Author: Vermin1ty
Author-email: Vermin1ty@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Simplipy-Python

## How to use

### **Command**

```python
from simplipy_python import Command

def PrintArgs(Arguments):
    print(Arguments)

CommandHandler = Command(CommandMessage="Run> ", StarterMessage=None) # StarterMessage is Optional.
CommandHandler.AddCommand(command_name="Print Arguments", command_function=PrintArgs)
CommandHandler.SetupCommands() # Setup Command Module.
```

It should look like this:
<br>
![Image of what it'll look like](https://i.imgur.com/9Za6hxE.png "Image of Simplipy")

### **Category**

```python
from simplipy_python import Command, Category

def PrintArgs(Arguments):
    print(Arguments)

def PrintArgsCategory(Arguments):
    print(f"Category {Arguments}")

CommandHandler = Command(CommandMessage="Run> ", StarterMessage="Category Test!!!")
CommandHandler.AddCommand(command_name="Print Arguments", command_function=PrintArgs)

Category1 = Category(category_name="Other Functions")
Category1.AddCommand(command_name="Print Arguments 1", command_function=PrintArgsCategory)

CommandHandler.SetupCommands(Categories=[Category1])
```

**BEFORE TRYING THIS, PLEASE TYPE IN THE CATEGORY NAME**
<br>
_Case Sensitive_

```
Commands Run> Other-Functions
```

Should look like this:
<br>
![Image of what it'll look like](https://i.imgur.com/7jHtD8r.png "Image of Simplipy Category")

