A python module that extends argparser to create nested namespace trees for subparsers.
Project description
nested-argparse 💬 → 🅰.🅱.🆒
nested-argparse is a python module that non-invasively builds on top of the built-in argparse library to allow subparsers to parse into their own nested namespaces.
The library exposes a class NestedArgumentParser which allows arbitrary nesting without worry of namespace conflicts. This is achieved with the following principles of this library:
- Inversion of Control: A parser, when adding a subparser, is in control of what name to use for the sub-namespace which the subparser sends its parsed args to.
- Drop-In Replacement: The constructor for
nested_argparse.NestedArgumentParsercan be substituted in directly to where the constructor forargparse.ArgumentParseris being used. All subsequent method calls and subparser API calls should work without any additional code change! - Customizeability: There are additional
kwargsexposed to further customize the nesting options to your liking, if the defaults do not suit your scenario.
The main difference between this library and its built-in counterpart is the return value of the parse_args method. Instead of a flat namespace containing all parsed arguments across all subparsers, NestedArgumentParser will produce a namespace tree.
Simple Conceptual Example
Given the following parser:
Root Parser
├─ positional_1
├─ --optional_1
├─ --optional_2
└─ sub parsers with dest='subcommand'
├─ Sub Parser 1 with name='sub1'
│ ├─ --optional_1
│ └─ --optional_2 with dest='optional2AltName'
└─ Sub Parser 2 with name='sub2'
├─ --optional_1
└─ --optional_2
And the following args to parse:
Alice --optional_1=Bob sub1 --optional_1=Carol --optional_2=David
The built-in ArgumentParser would not be able to handle the duplication in dests, but NestedArgumentParser will produce the following result when run through parse_args:
Namespace(
subcommand='sub1',
positional_1='Alice',
optional_1='Bob',
sub1=Namespace(
optional_1='Carol',
optional2AltName='David'
)
)
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 nested_argparse-0.1.2.tar.gz.
File metadata
- Download URL: nested_argparse-0.1.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
581996b7423efe26150f8f2d0a558bee69102a6f943b4b1c8c7318b94af275db
|
|
| MD5 |
fa4757475e8591f96e821160ededdb96
|
|
| BLAKE2b-256 |
fe1a67decd61cb897688ee7d3598fdebd1ba20e6b6e23f40d9742f8f5b6fa699
|
File details
Details for the file nested_argparse-0.1.2-py3-none-any.whl.
File metadata
- Download URL: nested_argparse-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abffa93d59bbe1ab2c744b4d060954d66652a9fadeafa93c113d973a1f13402c
|
|
| MD5 |
c1abd33c2f04834040c7c1f90c60a6d6
|
|
| BLAKE2b-256 |
77105f9801f6e4439641a68e0d4be8b25069d9a2fcced1c79e5741f2c4271b45
|