This package helps creating re-usable flags for click scripts.
The flags (defined elsewhere) can be used as:
import click import click.plus @click.command() .. normal click options/arguments @click.plus.configure(["boost"]) def main(): ...
There's a commented example with a main script and the arguments group args.
Python
>= 3.5.click
You can install click-plus
via pip from PyPI:
$ pip install click-plus