Skip to main content

Enable aliasing and unique matching for Click

Project description

click-aliasing

Add (multiple) aliasing to a click_ group or command.

In your click app:

import click
from click_aliasing import ClickAliasedGroup


@click.group(cls=ClickAliasedGroup)
def cli():
    pass


@cli.command(aliases=["bar", "baz", "qux"])
def foo():
    """Run a command."""
    click.echo("foo")

Will result in:

Usage: cli [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  foo (bar,baz,qux)  Run a command.

Command can also be called with a unique short match:

cli f

>>foo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

click_aliasing-1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

click_aliasing-1.0.0-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page