Metadata-Version: 2.4
Name: parsegument
Version: 0.2.0
Summary: An easy-to-use Argument Parser that executes functions from string inputs
Author-email: Ryan Studio <ryanstudiobusiness@gmail.com>
License: MIT
Project-URL: Repository, https://github.com/RyanStudioo/Parsegument
Keywords: parsegument,parser,argument parse,parse
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# Parsegument
An easy to use Argument Parsing and Command Routing library

Read The Docs: https://ryanstudio.dev/docs/parsegument

## Installation
```commandline
pip install parsegument
```

## Quick Start
```python
import parsegument as pg
parser = pg.Parsegumenter() # Create Parsegumenter

group1 = pg.CommandGroup("group1") # Define a Group
parser.add_child(group1) # Add the Group to the main Parsegumenter

@group1.command # Add decorator to create command
def foo(bar:str):
    print(bar)

parser.execute("group1 foo bar_string") # Execute string
```

