🌈 Extra colorization and configuration file for Click.
Project description
Click Extra
What is Click Extra?
click-extra
is a collection of helpers and utilities for
Click, the Python CLI framework.
It is a drop-in replacement with good defaults that saves you some boilerplate code. It also comes with some workarounds and patches that have not reached upstream yet (or are unlikely to).
Simple click example |
Same with click-extra |
from click import command, echo, option
@command()
@option("--count", default=1, help="Number of greetings.")
@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 _ in range(count):
echo(f"Hello, {name}!")
if __name__ == "__main__":
hello()
|
from click_extra import command, echo, option
@command()
@option("--count", default=1, help="Number of greetings.")
@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 _ in range(count):
echo(f"Hello, {name}!")
if __name__ == "__main__":
hello()
|
This example demonstrate the all-in-one package with its default options. You are still free to pick-up some of these options one-by-one, as documented below.
Features
- TOML, YAML and JSON configuration file loader
- Colorization of help screens
--color/--no-color
option flag- Colored
--version
option - Colored
--verbosity
option and logs --time/--no-time
flag to measure duration of command execution- Platform recognition utilities (macOS, Linux and Windows)
- New conditional markers for
pytest
:@skip_linux
,@skip_macos
and@skip_windows
@unless_linux
,@unless_macos
and@unless_windows
@destructive
and@non_destructive
Installation
Install click-extra
with pip
:
$ pip install click-extra
Configuration loader usage
TOML configuration
Given this CLI in a my_cli.py
file:
import click
from click_extra.config import config_option
@click.group(context_settings={"show_default": True})
@click.option("--dummy-flag/--no-flag")
@click.option("--my-list", multiple=True)
@config_option()
def my_cli(dummy_flag, my_list):
click.echo(f"dummy_flag is {dummy_flag!r}")
click.echo(f"my_list is {my_list!r}")
@my_cli.command()
@click.option("--int-param", type=int, default=10)
def subcommand(int_param):
click.echo(f"int_parameter is {int_param!r}")
if __name__ == "__main__":
my_cli()
It produces the following help screens:
$ python ./my_cli.py
Usage: my_cli.py [OPTIONS] COMMAND [ARGS]...
Options:
--dummy-flag / --no-flag [default: no-flag]
--my-list TEXT
-C, --config CONFIG_PATH Location of the configuration file. Supports both
local path and remote URL. [default:
~/.my_cli.py/config.{toml,yaml,yml,json}]
--help Show this message and exit. [default: False]
Commands:
subcommand
A bare call returns:
$ ./my_cli.py subcommand
dummy_flag is False
my_list is ()
int_parameter is 10
Now we will change the default CLI output by creating a TOML file at
~/.my_cli.py/config.toml
which contains:
# My default configuration file.
top_level_param = "is_ignored"
[my-cli]
extra_value = "is ignored too"
dummy_flag = true # New boolean default.
my_list = ["item 1", "item #2", "Very Last Item!"]
[garbage]
# An empty random section that will be skipped
[my-cli.subcommand]
int_param = 3
random_stuff = "will be ignored"
In the file above, pay attention to:
- the configuration's folder (
~/.my_cli.py/
) which correspond to the script's name (my_cli.py
); - the top-level config section (
[my-cli]
), that is derived from the CLI's group ID (def my_cli()
); - all the extra comments, sections and values that will be silently ignored.
Now we can verify the TOML file is read automatticaly and change the defaults:
$ ./my_cli.py subcommand
dummy_flag is True
my_list is ('item 1', 'item #2', 'Very Last Item!')
int_parameter is 3
Still, any inline parameter is allowedal to ovverides the configuration defaults:
$ ./my_cli.py subcommand --int-param 555
dummy_flag is True
my_list is ('item 1', 'item #2', 'Very Last Item!')
int_parameter is 555
YAML configuration
Same example as above is working as-is with YAML.
Just replace the TOML file with the following configuration at
~/.my_cli.py/config.yaml
:
# My default configuration file.
top_level_param: is_ignored
my-cli:
extra_value: is ignored too
dummy_flag: true # New boolean default.
my_list:
- point 1
- 'point #2'
- Very Last Point!
subcommand:
int_param: 77
random_stuff: will be ignored
garbage: >
An empty random section that will be skipped
$ ./my_cli.py --config ~/.my_cli.py/config.yaml subcommand
dummy_flag is True
my_list is ('point 1', 'point #2', 'Very Last Point!')
int_parameter is 77
JSON configuration
Again, same for JSON:
{
"top_level_param": "is_ignored",
"garbage": {},
"my-cli": {
"dummy_flag": true,
"extra_value": "is ignored too",
"my_list": [
"item 1",
"item #2",
"Very Last Item!"
],
"subcommand": {
"int_param": 65,
"random_stuff": "will be ignored"
}
}
}
$ ./my_cli.py --config ~/.my_cli.py/config.json subcommand
dummy_flag is True
my_list is ('item 1', 'item #2', 'Very Last Item!')
int_parameter is 65
Remote configuration
Remote URL can be passed directly to the --config
option:
$ ./my_cli.py --config https://example.com/dummy/configuration.yaml subcommand
dummy_flag is True
my_list is ('point 1', 'point #2', 'Very Last Point!')
int_parameter is 77
Colorization of help screen
Extend Cloup's own help formatter and theme to add colorization of:
- Options
- Choices
- Metavars
Used in
Check these projects to get real-life example of click-extra
usage:
- Mail Deduplicate - A CLI to deduplicate similar emails.
- Meta Package Manager - A unifying CLI for multiple package managers.
Issues addressed by click-extra
Keep track of things to undo if they reach upstream.
#2111
-Context.color = False
doesn't overridesecho(color=True)
#2110
-testing.CliRunner.invoke
cannot pass color forContext
instantiation
#30
- Add ano-color
option, method or parameter to disable colouring globally#29
- Log level is leaking between invokations: hack to force-reset it#24
- Add missing string interpolation in error message#18
- Add trailing dot to help text
#98
- Add support for option groups oncloup.Group
#97
- Styling metavars, default values, env var, choices#95
- Highlights options, choices and metavars#96
- Add loading of options from a TOML configuration file
Dependencies
Here is a graph of Python package dependencies:
Development
Development guidelines
are the same as
parent project mpm
, from
which click-extra
originated.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file click-extra-1.6.4.tar.gz
.
File metadata
- Download URL: click-extra-1.6.4.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 456dadbc7c3bfaa5b7364dc2bc4507a65ebc52b4a8e4c76aa946bc107e5a93cc |
|
MD5 | 8f013a4b810741ed53d9e78c827b136e |
|
BLAKE2b-256 | 245eacc0fdd1e419ea403ede96b1ac2bce14a229b05a226b4a3582e4d404ccf5 |
File details
Details for the file click_extra-1.6.4-py3-none-any.whl
.
File metadata
- Download URL: click_extra-1.6.4-py3-none-any.whl
- Upload date:
- Size: 41.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96f5747cf71741ec040ef60f33d31e4fb7da22f1d782e7653c97d88e1c508e41 |
|
MD5 | f0619e5dd54e5bd596001aff2fabac7d |
|
BLAKE2b-256 | fc0f366f0c514e0c80e65464f87cda739dde66a99f2f450d1f7e6936f7cf76c1 |