CL
Click
Composable command-line interface toolkit for Python — decorators turn functions into commands with options, arguments, and help text.
Click uses a decorator-based API — @click.command(), @click.option(), and @click.argument() transform any Python function into a fully featured CLI with automatic --help generation, type coercion, and shell completion. Flask uses Click for its own CLI; FastAPI and many ML tools build CLIs on top of it.
// commonly used with
// related libraries
// tags
cliargparsecommandspythonterminaldevtools