Nested arguments parser
Project description
nestargs
nestargs is a Python library that treats command line arguments as a hierarchical structure. The functionality for interpreting command line arguments is the same as argparse.
Installation
pip install nestargs
Basic usage
When defining command line arguments, use "." as the delimiter. to represent a variable hierarchy. The following code example defines an n and price variable in the apple hierarchy and another separate n and price variable in the banana hierarchy.
import nestargs
parser = nestargs.NestedArgumentParser()
parser.add_argument("--apple.n", type=int)
parser.add_argument("--apple.price", type=float)
parser.add_argument("--banana.n", type=int)
parser.add_argument("--banana.price", type=float)
args = parser.parse_args(
["--apple.n=2", "--apple.price=1.5", "--banana.n=3", "--banana.price=3.5"]
)
# => _NestedNamespace(apple=_NestedNamespace(n=2, price=1.5), banana=_NestedNamespace(n=3, price=3.5))
Variables obtained by parsing command line arguments can be referenced by hierarchy.
args.apple
# => _NestedNamespace(n=2, price=1.5)
Of course, you can also refer directly to variables lower down in the hierarchy.
args.apple.price
# => 1.5
When referring to each level of hierarchy, you can use vars to create a dictionary format.
vars(args.apple)
# => {'n': 2, 'price': 1.5}
Use a different delimiter for namespace
The default namespace delimiter is "." but can be any other character. In that case, specify the delimiter in the NestedArgumentParser constructor argument.
import nestargs
parser = nestargs.NestedArgumentParser(delimiter="/")
parser.add_argument("--apple/n", type=int)
args = parser.parse_args(["--apple/n=1"])
# => _NestedNamespace(apple=_NestedNamespace(n=1))
However, references to variables must be separated by "." delimiter when referring to variables.
args.apple.n
# => 1
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nestargs-1.1.0.tar.gz.
File metadata
- Download URL: nestargs-1.1.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa04ece9d36c7156566fb6d97f00bf108c5ea1b045d8b5ef26c43a5b48333720
|
|
| MD5 |
31b63bab1e4cab96ce3a394a4b09418e
|
|
| BLAKE2b-256 |
45cd9252cd4f0ee6ec41842d63fd02b05adddecb2c2d03b79ed4eeb42609cee9
|
File details
Details for the file nestargs-1.1.0-py3-none-any.whl.
File metadata
- Download URL: nestargs-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7861120093aea429b7a400a7b683f423210651a4fe5c67eb18a766d9d84a9317
|
|
| MD5 |
ad4945a4f66d25036b09f1b9613981ca
|
|
| BLAKE2b-256 |
12cb59926db20b93833d0de3b0420e152ce92aa8b600b3b2f58b60f0e92e9af2
|