这可以通过构建一个派生自 的自定义类来完成click.Option
,并在该类中覆盖以下click.Option.handle_parse_result()
方法:
自定义类:
import click
class NotRequiredIf(click.Option):
def __init__(self, *args, **kwargs):
self.not_required_if = kwargs.pop('not_required_if')
assert self.not_required_if, "'not_required_if' parameter required"
kwargs['help'] = (kwargs.get('help', '') +
' NOTE: This argument is mutually exclusive with %s' %
self.not_required_if
).strip()
super(NotRequiredIf, self).__init__(*args, **kwargs)
def handle_parse_result(self, ctx, opts, args):
we_are_present = self.name in opts
other_present = self.not_required_if in opts
if other_present:
if we_are_present:
raise click.UsageError(
"Illegal usage: `%s` is mutually exclusive with `%s`" % (
self.name, self.not_required_if))
else:
self.prompt = None
return super(NotRequiredIf, self).handle_parse_result(
ctx, opts, args)
使用自定义类:
要使用自定义类,请将cls
参数传递给click.option
装饰器,例如:
@click.option('--username', prompt=True, cls=NotRequiredIf,
not_required_if='authentication_token')
这是如何运作的?
这是因为 click 是一个设计良好的 OO 框架。@click.option()
装饰器通常实例化一个对象click.Option
,但允许使用cls
参数覆盖此行为。因此,从click.Option
我们自己的类中继承并覆盖所需的方法是一件相对容易的事情。
在这种情况下,如果令牌存在,我们会覆盖click.Option.handle_parse_result()
并禁用对令牌的需求,如果两者都存在则抱怨。user/password
authentication-token
user/password
authentication-token
注意:这个答案的灵感来自这个答案
测试代码:
@click.command()
@click.option('--authentication-token')
@click.option('--username', prompt=True, cls=NotRequiredIf,
not_required_if='authentication_token')
@click.option('--password', prompt=True, hide_input=True, cls=NotRequiredIf,
not_required_if='authentication_token')
def login(authentication_token, username, password):
click.echo('t:%s u:%s p:%s' % (
authentication_token, username, password))
if __name__ == '__main__':
login('--username name --password pword'.split())
login('--help'.split())
login(''.split())
login('--username name'.split())
login('--authentication-token token'.split())
结果:
来自login('--username name --password pword'.split())
:
t:None u:name p:pword
来自login('--help'.split())
:
Usage: test.py [OPTIONS]
Options:
--authentication-token TEXT
--username TEXT NOTE: This argument is mutually exclusive with
authentication_token
--password TEXT NOTE: This argument is mutually exclusive with
authentication_token
--help Show this message and exit.