Skip to main content

Automatically enable tab autocompletion for shells in Click CLI applications.

Project description

auto-click-auto

Automatically enable tab autocompletion for shells in Click CLI applications.

auto-click-auto is a small Python library that is used to quickly and easily add tab shell completion support for Bash (version 4.4 and up), Zsh, and Fish, for Click CLI programs.

Installation

pip install auto-click-auto

Usage

There are two functions that auto-click-auto makes available: enable_click_shell_completion (general use) and enable_click_shell_completion_option (to be used as a decorator).

In the function docstrings, you can find a detailed analysis of the available parameters and their use.

auto-click-auto will print the relative output when a shell completion is activated for the first time and can be set to an extra verbosity if you want to display information about already configured systems or debug.

Here are some typical ways to enable autocompletion with auto-click-auto:

  1. Check on every run of the CLI program if autocompletion is configured and enable it in case that it is not

This way you can seamlessly enable shell autocompletion without the user having to run any extra commands.

Example:

import click

from auto_click_auto import enable_click_shell_completion
from auto_click_auto.constants import ShellType


@click.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name', help='The person to greet.')
def hello(count, name):
    """Simple program that greets NAME for a total of COUNT times."""
    for x in range(count):
        click.echo(f"Hello {name}!")

    enable_click_shell_completion(
        program_name="example-1", shells={ShellType.BASH, ShellType.FISH},
    )
  1. Make shell completion a Click command option

Example:

import click

from auto_click_auto import enable_click_shell_completion_option


@click.command()
@enable_click_shell_completion_option(program_name="example-2")
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name', help='The person to greet.')
def hello(count, name):
    """Simple program that greets NAME for a total of COUNT times."""
    for x in range(count):
        click.echo(f"Hello {name}!")
  1. Make shell completion a command (or subcommand of a group)

This implementation option might be useful if you already have a "configuration" command in your CLI program.

Example:

import click

from auto_click_auto import enable_click_shell_completion
from auto_click_auto.constants import ShellType


@click.group()
def cli():
    """Simple CLI program."""
    pass


@cli.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name', help='The person to greet.')
def hello(count, name):
    """Simple command that greets NAME for a total of COUNT times."""
    for x in range(count):
        click.echo(f"Hello {name}!")


@cli.group()
def config():
    """Program configuration."""
    pass


@config.command()
def shell_completion():
    """Activate shell completion for this program."""
    enable_click_shell_completion(
        program_name="example-3",
        shells={ShellType.BASH, ShellType.FISH, ShellType.ZSH},
        verbose=True,
    )

Examples

To run the examples, fork this repository and follow the instructions at https://github.com/KAUTH/auto-click-auto/tree/main/examples.

Implementation

auto-click-auto enables tab autocompletion based on Click's documentation.

Name

auto-click-auto, as the name suggests, _auto_matically provides tab _auto_completion support for Click CLI applications.

Why auto-click-auto?

In the search for other tools that enable shell completion for Click we come across a lot of repositories with example code or gists. This adds a bit of complexity to adapting the code and adding it to our use case quickly.

A very nice tool is click-completion, which provides enhanced completion for Click. click-completion:

  • Adds automatic completion support for fish, Zsh, Bash and PowerShell
  • Currently, has one extra dependency, in addition to Click
  • Can customize the completion

However, it is important to note that this repository could be duplicating currently integrated Click functionality and might need to be archived. You can monitor the issue here.

In summary, auto-click-auto:

  • Has one specific purpose, it "automatically" enables shell completion for Click programs
  • Does not have any 3rd party dependencies, besides Click
  • Provides an option for seamless enabling of the shell completion
  • Comes ready with ways to add shell completion as a command option or subcommand
  • Has simple examples of how to quickly use the library

Contributing

You can always submit a PR if you want to suggest improvements or fix issues. Check out the open issues at https://github.com/KAUTH/auto-click-auto/issues.

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

auto_click_auto-0.1.0a1.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

auto_click_auto-0.1.0a1-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file auto_click_auto-0.1.0a1.tar.gz.

File metadata

  • Download URL: auto_click_auto-0.1.0a1.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for auto_click_auto-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 c708795536fa9b3b2c1caa0dd2f38a187adccc528bafd9830830bff907b1a936
MD5 03f4061e2ce45c96a8ebeb65f63c840e
BLAKE2b-256 7c6043bd1d1c756524b87a1c76a38a1a1d72d92d13ca6543d61c52e016b222a7

See more details on using hashes here.

File details

Details for the file auto_click_auto-0.1.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for auto_click_auto-0.1.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 320336fbe301c5623005db27428c77f28bcf2d5bfbe3ab4d2a0bb8e28a0e545a
MD5 4d820936b1f78b694d71932ba3f9f9b8
BLAKE2b-256 1bd3c5bb42faaf92179ee8109b5599524220f95e9109d0ef505880d818fb0bbe

See more details on using hashes here.

Supported by

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