A cli application
Typer is a library for building CLI applications that users will love using and developers will love creating.
- Python 3.6+
- Typer stands on the shoulders of a giant. Its only internal dependency is Click.
pip install "typer[all]"
python main.py hello Reza
python main.py goodbye Reza
python main.py goodbye Reza --formal
You get a --help for free
python main.py --help
python main.py hello --help
python main.py goodbye --help