这个问题与Python Click库有关。
我想点击收集我的命令行参数。收集后,我想重用这些值。我不想要任何疯狂的回调链接,只需使用返回值。默认情况下,单击使用返回值禁用并调用sys.exit()
。
我想知道在我想使用装饰器样式的情况下如何正确调用standalone_mode
(http://click.pocoo.org/5/exceptions/#what-if-i-don-t-want-that)。以上链接的doc仅显示使用click(手动)创建命令时的用法。
它甚至可能吗?最小的例子如下所示。它说明了从sys.exit()
gatherarguments
import click
@click.command()
@click.option('--name', help='Enter Name')
@click.pass_context
def gatherarguments(ctx, name):
return ctx
def usectx(ctx):
print("Name is %s" % ctx.params.name)
if __name__ == '__main__':
ctx = gatherarguments()
print(ctx) # is never called
usectx(ctx) # is never called
$ python test.py --name Your_Name
我希望这是无国籍的,意思是,没有任何click.group
功能 - 我只想要结果,而不需要我的应用程序退出。
答案 0 :(得分:2)
只需将standalone_mode作为关键字参数发送给我:
from __future__ import print_function
import click
@click.command()
@click.option('--name', help='Enter Name')
@click.pass_context
def gatherarguments(ctx, name):
return ctx
def usectx(ctx):
print("Name is %s" % ctx.params['name'])
if __name__ == '__main__':
ctx = gatherarguments(standalone_mode=False)
print(ctx)
usectx(ctx)
输出:
./clickme.py --name something
<click.core.Context object at 0x7fb671a51690>
Name is something