Skip to main content

A python module that extends argparser to create nested namespace trees for subparsers.

Project description

nested-argparse 💬 → 🅰.🅱.🆒

PyPI PyPI - Status PyPI - Python Version PyPI - License

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.NestedArgumentParser can be substituted in directly to where the constructor for argparse.ArgumentParser is being used. All subsequent method calls and subparser API calls should work without any additional code change!
  • Customizeability: There are additional kwargs exposed 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.

Quick Example

Given the following parser:

Root Parser with prog='root'
 ├─ 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(
  root=Namespace(
    subcommand='sub1',
    positional_1='Alice',
    optional_1='Bob',
    sub1=Namespace(
      optional_1='Carol',
      optional2AltName='David'
    )
  )
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nested_argparse-0.1.0.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

nested_argparse-0.1.0-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file nested_argparse-0.1.0.tar.gz.

File metadata

  • Download URL: nested_argparse-0.1.0.tar.gz
  • Upload date:
  • Size: 6.1 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

Hashes for nested_argparse-0.1.0.tar.gz
Algorithm Hash digest
SHA256 49925887337e0b8177d1fe66f2d946fc2ae678809c4aa4351acbe4c104eea352
MD5 6f300059974f9dcc9a99baf63a65d2b9
BLAKE2b-256 7eebddb4593accd0f2bbe75cc0e88dde084bfe8c18932ed2f99d8753c0b7227a

See more details on using hashes here.

File details

Details for the file nested_argparse-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: nested_argparse-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.1 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

Hashes for nested_argparse-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b7768d47a563435b85580d9a8d0db9c5afd874951be0890d24f12f0394130eb6
MD5 33e470139a8cdb1f1028490a976ec016
BLAKE2b-256 e63700ec2c9336ccfa1d59633ec9accf82cf7af871209611b90a242f3bfbd22a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page