Metadata-Version: 2.1
Name: nevargs
Version: 0.0.5
Summary: Formats strings of args into dicts
Home-page: https://github.com/nevalicjus/nevargs
Author: Nevalicjus
Author-email: nevalicjus@gmail.com
License: UNKNOWN
Project-URL: Author, https://n3v.xyz
Project-URL: Bug Tracker, https://github.com/nevalicjus/nevargs/issues
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
License-File: LICENSE.md

# nevargs

It's a simple package that using shlex formats your cli-like argument strings and format them into a dict

```py
>>> import nevargs
>>> s = "this is -f True fun -c command"
>>> nevargs.dictify(s)
{'args': ['this', 'is', 'fun'], '-f': ['True'], '-c': ['command']}
```
Arguments with no value are returned under `args` and for each flag found, it's arguments are under `{flag}`


