collection of click extensions


License
MIT
Install
pip install click-plus==0.0.3

Documentation

click-plus

This package helps creating re-usable flags for click scripts.

PyPI version Python versions Build Black

Features

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.

Requirements

  • Python >= 3.5.
  • click

Installation

You can install click-plus via pip from PyPI:

$ pip install click-plus