Writing a Python Click CLI without decorators
Introduction Click is my favourite Python CLI library. Click simplifies the process of writing a command-line app: it handles argument parsing, subcommand structuring, and creating help text. I’ve found that the standard library’s argparse works well for simple, zero-dependency scripts but if I’m writing a script which requires dependencies or if my script is starting to scale beyond a single command, I switch to Click. Here’s a Hello World example of Click....