Skip to main content

Colorization of help messages in Click

Project description

PyPI PyPI - Downloads

Colorization of help messages in Click.

Usage

import click
from click_help_colors import HelpColorsGroup, HelpColorsCommand

@click.group(
    cls=HelpColorsGroup,
    help_headers_color='yellow',
    help_options_color='green'
)
def cli():
    pass

@cli.command()
@click.option('--count', default=1, help='Some number.')
def command1(count):
    click.echo('command 1')

@cli.command(
    cls=HelpColorsCommand,
    help_options_color='blue'
)
@click.option('--name', help='Some string.')
def command2(name):
    click.echo('command 2')
$ python example.py --help
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/1.png
$ python example.py command1 --help
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/2.png
$ python example.py command2 --help
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/3.png
import click
from click_help_colors import HelpColorsGroup, HelpColorsCommand

@click.group(
    cls=HelpColorsGroup,
    help_headers_color='yellow',
    help_options_color='green',
    help_options_custom_colors={'command3': 'red', 'command4': 'cyan'}
)
def cli():
    pass


@cli.command(
    cls=HelpColorsCommand,
    help_headers_color=None,
    help_options_color=None,
    help_options_custom_colors={'--count': 'red', '--subtract': 'green'}
)
@click.option('--count', default=1, help='Count help text.')
@click.option('--add', default=1, help='Add help text.')
@click.option('--subtract', default=1, help='Subtract help text.')
def command1(count, add, subtract):
    """A command"""
    click.echo('command 1')

...
$ python example_with_custom_colors.py --help
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/4.png
$ python example_with_custom_colors.py command1 --help
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/5.png
from click_help_colors import version_option

@click.group()
def cli():
    pass

@cli.command()
@version_option(
    version='1.0',
    prog_name='example',
    message_color='green'
)
def cmd1():
    pass

@cli.command()
@version_option(
    version='1.0',
    prog_name='example',
    version_color='green',
    prog_name_color='yellow'
)
def cmd2():
    pass

@cli.command()
@version_option(
    version='1.0',
    prog_name='example',
    version_color='green',
    prog_name_color='white',
    message='%(prog)s %(version)s\n   python=3.7',
    message_color='bright_black'
)
def cmd3():
    pass
https://raw.githubusercontent.com/click-contrib/click-help-colors/master/examples/screenshots/6.png

Installation

With pip:

$ pip install click-help-colors

From source:

$ git clone https://github.com/click-contrib/click-help-colors.git
$ cd click-help-colors
$ python setup.py install

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-help-colors-0.9.4.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

click_help_colors-0.9.4-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file click-help-colors-0.9.4.tar.gz.

File metadata

  • Download URL: click-help-colors-0.9.4.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for click-help-colors-0.9.4.tar.gz
Algorithm Hash digest
SHA256 f4cabe52cf550299b8888f4f2ee4c5f359ac27e33bcfe4d61db47785a5cc936c
MD5 bb1fb93a8871cf2800de794e2e34fc06
BLAKE2b-256 6f5076f51d9c7fcd72a12da466801f7c1fa3884424c947787333c74327b4fcf3

See more details on using hashes here.

File details

Details for the file click_help_colors-0.9.4-py3-none-any.whl.

File metadata

File hashes

Hashes for click_help_colors-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b33c5803eeaeb084393b1ab5899dc5476c7196b87a18713045afe76f840b42db
MD5 1a10ef7b5c51e069f4734a2249648011
BLAKE2b-256 99f88768f803151714640cb6f06fd9de490ce7db632d351da05f42f77330d2fd

See more details on using hashes here.

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