An open API service indexing awesome lists of open source software.

https://github.com/enhuiz/argparse-node

A minimal multi-level argument parser for your python CLI apps.
https://github.com/enhuiz/argparse-node

argparse cli python

Last synced: 10 months ago
JSON representation

A minimal multi-level argument parser for your python CLI apps.

Awesome Lists containing this project

README

          

# Argparse Node

> A minimal multi-level argument parser for your python CLI apps.

## Installation

From PyPI:

```
pip install argparse-node
```

From Github:

```
pip install git+https://github.com/enhuiz/argparse-node.git
```

## Run an example

```
python -m example.entry show hello
python -m example.entry wohs hello
python -m example.entry sub_example show hello
python -m example.entry sub_example wohs hello
python -m example.entry --verbose show hello
python -m example.entry --help
```

See `example/` for details.