fybx / crispy

Crispy is a simple command line argument parser, ready to be integrated to any project of any size!

Home Page:https://pypi.org/project/crispy-parser/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

crispy Test crispy Upload Python Package

crispy is my take on parsing command-line arguments. It is a dead simple tool that allows you to define your own keys for systematically gathering variables.

In just 5 simple steps, you can start parsing any complicated user input into a dictionary—simple and predictable. It can't get more versatile than that, can it?

Capabilities

Feature Support Version
String, integer, float, and boolean type arguments v1.0.0
Custom exceptions for tracking user errors in input v1.0.0
Custom subcommands v2.0.0
Positional arguments v2.1.0
Treating quoted strings as single input in parse_string() TO DO ...

Usage

  1. To start using crispy-parser in your projects, install it from PyPI:
$ pip install crispy-parser
  1. Import the parser into your source code:
from crispy.crispy import Crispy
  1. Add your arguments:
c = Crispy()
c.add_variable("name", str)
c.add_variable("age", int)
c.add_variable("salary", float)
  1. Throw any user-inputted string or argument list at it!
result = c.parse_string("--name John -a=21 --salary=30000.45")
print(result)

{'name': 'John', 'age': 21, 'salary': 30000.45}

Or parse sys.argv:

arguments = c.parse_arguments(sys.argv[1:])
print(arguments)

{'message': 'message.txt', 'targets': 'targets.txt', 'url_format': 'api.txt'}

Contributing

I welcome contributions to enhance and improve this library! Whether you want to fix a bug, add a new feature, or suggest an improvement, your contributions are highly appreciated.

Just so you know, by contributing to this project, you agree to license your contributions under the same license governing this library. If you're unsure or have questions about the contribution process, please get in touch with me by opening an issue.

Credits

Feel free to contact me for collaboration on anything!

Ferit Yiğit BALABAN, <fyb@fybx.dev>

My WebsiteMy BentoXLinkedIn

2023

About

Crispy is a simple command line argument parser, ready to be integrated to any project of any size!

https://pypi.org/project/crispy-parser/

License:GNU Lesser General Public License v2.1


Languages

Language:Python 100.0%