Open ChanceNCounter opened 3 years ago
note to implementer:
@click.command()
...
@click.option('-v', '--verbose', count=True)
def command_function(..., verbose: int):
...
f"pip install{(' -' + ('v' * min(verbose, 3))) if verbose else ''} foobar"
pip so slow!