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.
- Host: GitHub
- URL: https://github.com/enhuiz/argparse-node
- Owner: enhuiz
- Created: 2021-06-20T06:25:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-01T05:56:34.000Z (almost 4 years ago)
- Last Synced: 2025-01-07T18:29:29.431Z (12 months ago)
- Topics: argparse, cli, python
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.