We are now open to a PR for adding a help kwarg to arguments in the same way that there is for options and adjusting the help pages to account for this.
@click.command()
@click.argument('name', help='The name to print')
@click.option('--count', default=1, help='number of greetings')
def hello(name: str, count: int):
"""This script prints hello and a name one or more times."""
for x in range(count):
if name:
click.echo(f"Hello {name}!")
else:
click.echo("Hello!")
We are now open to a PR for adding a help kwarg to arguments in the same way that there is for options and adjusting the help pages to account for this.
Help Pages