Metadata-Version: 2.1
Name: cmdbrk
Version: 0.0.4
Home-page: https://github.com/AregPrograms/cmdbrk.py
Author: Areg Harutyunyan
Author-email: harutyunyanareg2011@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# cmdbrk.py
Quickly and easily handle command line arguments.

## Usage

Basic Example:

```python
from cmdbrk import handle
from sys    import argv

print(handle(argv))
```

### 0.0.4
Add prefix argument to handle function's docstring.

### 0.0.3
Patch bug in 0.0.2: If prefix length is over 1, the flag still includes part of the prefix

### 0.0.2
Made flags not include the prefix.

### 0.0.1
Added option to change prefix.
