让 argparse 也可以通过修饰器形式设置命令行参数

2021-03-10 16:53:02 +08:00
 ungrown

https://github.com/mo-han/mo-han-toolbox/blob/8e2e92d0c1b771155bac463f836da34a94982b29/mylib/ez/argparse.py

单纯就是为了偷懒,形似 Click

#test.py

from mylib.ez.argparse import *
from mylib.ez import AttrName

pr = ParserRigger()
ro = RawObject
an = AttrName()  # an.attribute == 'attribute'


@pr.super_command()
@pr.argument(an.x)
@pr.argument(an.y)
@pr.argument(an.z)
@pr.flag(an.l, help='print in multiple lines')
@pr.call_map(an.x, ro(1111), an.z, UnknownArguments(), multi_line=an.l)
def xyz(x, y, z, more, multi_line=False):
    print(f'x={x}', f'y={y}', f'z={z}', 'and more', *more, sep='\n' if multi_line else ', ')


an.x = an.y = an.z = an.l = None

pr.parse_known_args()
pr.run()
>test
usage: test.py [-h] [-l] x y z
test.py: error: the following arguments are required: x, y, z

>test -h
usage: test.py [-h] [-l] x y z

positional arguments:
  x
  y
  z

optional arguments:
  -h, --help  show this help message and exit
  -l          print in multiple lines
  
>test 0 0 0 a b c
x=0, y=1111, z=0, and more, a, b, c

>test 0 0 0 a b c -l
x=0
y=1111
z=0
and more
a
b
c
1449 次点击
所在节点    Python
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/760390

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX