Overview
A wrapper around argparser to help build CLIs from functions. Uses type-hints extensively .
Setup
Installation
Install it directly into an activated virtual environment:
1 |
|
or add it to your Poetry project:
1 |
|
Usage
- create a python file called test.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
-
Here Arger is just a subclass of
ArgumentParser
. It will not conceal you from using otherargparse
libraries. -
run this normally with
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 |
|
- Checkout examples folder and documentation to see more of
arger
in action. It supports any level of sub-commands.
Features
- Uses docstring to parse help comment for arguments. Supports
- Flags will be generated from parameter-name.
- e.g.
def main(param: ...)
->-p, --param
- If needed you could declare it inside docstring like
:param arg1: -a --arg this is the document
. - one can use
Argument
class to pass any values to the parser.add_argument function -
The decorated functions can be composed to form nested sub-commands of any level.
-
Most of the Standard types supported. Please see examples for more supported types with examples.
NOTE -
*args
supported but no**kwargs
support yet. - all optional arguments that start with underscore is not passed toParser
. They are considered private to the function implementation. Some parameter names with special meaning -_namespace_
-> to get the output from theArgumentParser.parse_args()
-_arger_
-> to get the parser instance
Argparser enhancements
- web-ui : https://github.com/nirizr/argparseweb
- extra actions : https://github.com/kadimisetty/action-hero
- automatic shell completions using argcomplete