Passing a List of Arguments with Click
Passing a List of Arguments with Click
March 29, 2025
You can use the multiple
option.
@click.command()
@click.option('--message', '-m', multiple=True)
def commit(message):
click.echo('\n'.join(message))
$ commit -m foo -m bar
foo
bar
More info, see https://click.palletsprojects.com/en/8.1.x/options/#multiple-options