Command-line interfaces

Name Short description 🚦
typer A user-friendly and intuitive CLI system. Built on click. Best
click Makes nice-looking CLIs, and more configurable than argparse. Uses decorators. Good
argparse Python’s builtin CLI system uses object configuration. Good
optparse A now-deprecated CLI system built into Python. Avoid

Other useful tools for CLIs

Name Short description 🚦
tqdm Progress bar for loops. Best
inquirer Collection of common interactive command line user interfaces. Best