现在我的脚本通过以下方式调用:
python resylter.py -n *newfile* -o *oldfile*
代码如下:
parser.add_argument('-n', '--newfile', help='Uses only with -o argument. Compares inputed OLD (-o) file with previous run results with NEW(-n) output.xml file with actual run results')
parser.add_argument('-o', '--oldfile', help='Uses only with -n argument. Compares inputed OLD (-o) file with previous run results with NEW(-n) output.xml file with actual run results')
和一些行动
我如何编辑它才能像这样使用?:
python resylter.py -n *newfile* *oldfile*
sys.argv [-1]没有用
答案 0 :(得分:10)
回复OP's answer:
nargs='*'
中的星号表示零个或多个参数(如正则表达式),这在此上下文中没有意义。你想要nargs=2
。
即
parser.add_argument(
'-c',
'--compare',
nargs=2,
metavar=('newfile', 'oldfile'),
help='Compares previous run results in oldfile with actual run results in newfile.',
)
args = parser.parse_args()
newfile, oldfile = args.compare
如果您运行metavar=('newfile', 'oldfile')
,还可以添加resylter.py -h
来改进帮助文字。
答案 1 :(得分:0)
nargs = '*'
我做了以下事情:
parser.add_argument('-c', '--compare', nargs = '*')
_newfile_ = _args_.compare[0]
_oldfile_ = _args_.compare[1]
现在可以使用了