Provides a straightforward way to create command line arguments.
Project description
jarguments
simplifying args jargon
Summary
Provides a straightforward way to create command line arguments.
- :snake: Supports Python 3.8 and above. Tested on Windows 10.
- :construction: This project is still in development. Contributions are welcome!
- :star: Show your support by leaving a star!
Contents
Installation
python -m pip install --upgrade jarguments
[!WARNING] All versions before
0.3.0
have been unpublished due to a major oversight. Please update to the latest version.
Usage
There are three steps to using the jarguments library:
-
Import the jarguments library.
from jarguments import create, parse
-
Provide your arguments with jarguments' classes.
# argument parser args = parse.JParser( # boolean argument create.JBool('show-text', helpstring='determines whether "text" is shown'), # integer argument create.JInt('number', default=1), # string argument create.JStr('text'), )
-
Use the outputs; they're parsed automatically!
if args.show_text: for _ in range(args.number): print(args.text)
Now it works just like any other command line application.
$ python example.py --show-text --text "hello" "world"
["hello", "world"]
-
Arguments without a default value are required. If you don't provide them, the script will raise an error:
$ python example.py --show-text error: the following arguments are required: --text
-
The
--help
/-h
flag displays help messages:$ python example.py -h usage: example.py [-h] [--show-text [SHOW_TEXT]] [--number NUMBER] --text [TEXT ...] options: -h, --help show this help message and exit --show-text [SHOW_TEXT] determines whether "text" is shown --number NUMBER --text [TEXT ...]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jarguments-0.3.0.tar.gz
.
File metadata
- Download URL: jarguments-0.3.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7c104703906d1ecc2e0cb92ad820cf96b68fd852f4fc528acaf9bcbd605ca35 |
|
MD5 | 39d009f6334a19d94656452067d22712 |
|
BLAKE2b-256 | dc5834242393f55128168f613f216232b321bf0bfb592e6a7d57850ef353ac0b |
File details
Details for the file jarguments-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: jarguments-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a085b40de43dd4b356943e8caa28d6c484aecf0ee498c1ecc6e1cc8f8cf25b3c |
|
MD5 | c879e05625097df6d995dc836c36720b |
|
BLAKE2b-256 | 8f00c0119a433390d8c6ac1bb7db976961580b3868455d91672ba4352a5c92a9 |