博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python argparse 处理命令行小结
阅读量:4955 次
发布时间:2019-06-12

本文共 6752 字,大约阅读时间需要 22 分钟。

Python argparse 处理命令行小结

1. 关于argparse

是python的一个命令行解析包,主要用于处理命令行参数

 

2. 基本用法

test.py是测试文件,其内容如下:

import argparseparser = argparse.ArgumentParser()parser.parse_args()测试:/home $ python test.py/home $ python test.py --helpusage: test.py [-h]optional arguments:-h, --help show this help message and exit/home $ python test.py -v usage: test.py [-h]test.py: error: unrecognized arguments: -v/home $ python test.py ttusage: test.py [-h]test.py: error: unrecognized arguments: tt

第一个没有任何输出和出错

第二个测试为打印帮助信息,argparse会自动生成帮助文档
第三个测试为未定义的-v参数,会出错
第四个测试为未定义的参数tt,出错

 

3. positional arguments

修改test.py的内容如下:

import argparseparser = argparse.ArgumentParser()parser.add_argument("echo")args = parser.parse_args()print args.echo测试:/home $ python test.py usage: test.py [-h] echotest.py: error: too few arguments/home $ python test.py -husage: test.py [-h] echopositional arguments:echooptional arguments:-h, --help show this help message and exit/home $ python test.py tttt

定义了一个叫echo的参数,默认必选

第一个测试为不带参数,由于echo参数为空,所以报错,并给出用法(usage)和错误信息

第二个测试为打印帮助信息
第三个测试为正常用法,回显了输入字符串tt

 

4. optional arguments

中文名叫可选参数,有两种方式:

一种是通过一个-来指定的短参数,如-h;
一种是通过--来指定的长参数,如--help
这两种方式可以同存,也可以只存在一个,修改test.py内容如下:

import argparseparser = argparse.ArgumentParser()parser.add_argument("-v", "--verbosity", help="increase output verbosity")args = parser.parse_args()if args.verbosity:print "verbosity turned on"注意这一行:parser.add_argument("-v", "--verbosity", help="increase output verbosity")定义了可选参数-v或--verbosity,通过解析后,其值保存在args.verbosity变量中用法如下:/home $ python test.py -v 1verbosity turned on/home $ python test.py --verbosity 1verbosity turned on/home $ python test.py -h usage: test.py [-h] [-v VERBOSITY]optional arguments:-h, --help show this help message and exit-v VERBOSITY, --verbosity VERBOSITYincrease output verbosity/home $ python test.py -v usage: test.py [-h] [-v VERBOSITY]test.py: error: argument -v/--verbosity: expected one argument

测试1中,通过-v来指定参数值

测试2中,通过--verbosity来指定参数值

测试3中,通过-h来打印帮助信息
测试4中,没有给-v指定参数值,所以会报错

 

5. action='store_true'

上一个用法中-v必须指定参数值,否则就会报错,有没有像-h那样,不需要指定参数值的呢,答案是有,通过定义参数时指定action="store_true"即可,用法如下

import argparseparser = argparse.ArgumentParser()parser.add_argument("-v", "--verbose", help="increase output verbosity",action="store_true")args = parser.parse_args()if args.verbose:print "verbosity turned on"测试:/home $ python test.py -vverbosity turned on/home $ python test.py -husage: test.py [-h] [-v]optional arguments:-h, --help show this help message and exit-v, --verbose increase output verbosity

第一个例子中,-v没有指定任何参数也可,其实存的是True和False,如果出现,则其值为True,否则为False

 

6. 类型 type

默认的参数类型为str,如果要进行数学计算,需要对参数进行解析后进行类型转换,如果不能转换则需要报错,这样比较麻烦
argparse提供了对参数类型的解析,如果类型不符合,则直接报错。如下是对参数进行平方计算的程序:

import argparseparser = argparse.ArgumentParser()parser.add_argument('x', type=int, help="the base")args = parser.parse_args()answer = args.x ** 2print answer测试:/home $ python test.py 24/home $ python test.py twousage: test.py [-h] xtest.py: error: argument x: invalid int value: 'two'/home $ python test.py -h usage: test.py [-h] xpositional arguments:x the baseoptional arguments:-h, --help show this help message and exit

第一个测试为计算2的平方数,类型为int,正常

第二个测试为一个非int数,报错
第三个为打印帮助信息

 

7. 可选值choices=[]

5中的action的例子中定义了默认值为True和False的方式,如果要限定某个值的取值范围,比如6中的整形,限定其取值范围为0, 1, 2,该如何进行呢?
修改test.py文件如下:

import argparseparser = argparse.ArgumentParser()parser.add_argument("square", type=int,help="display a square of a given number")parser.add_argument("-v", "--verbosity", type=int, choices=[0, 1, 2],help="increase output verbosity")args = parser.parse_args()answer = args.square**2if args.verbosity == 2:print "the square of {} equals {}".format(args.square, answer)elif args.verbosity == 1:print "{}^2 == {}".format(args.square, answer)else:print answer测试:/home $ python test.py 4 -v 016/home $ python test.py 4 -v 14^2 == 16/home $ python test.py 4 -v 2the square of 4 equals 16/home $ python test.py 4 -v 3usage: test.py [-h] [-v {0,1,2}] squaretest.py: error: argument -v/--verbosity: invalid choice: 3 (choose from 0, 1, 2)/home $ python test.py -husage: test.py [-h] [-v {0,1,2}] squarepositional arguments:square display a square of a given numberoptional arguments:-h, --help show this help message and exit-v {0,1,2}, --verbosity {0,1,2}increase output verbosity

测试1, 2, 3 为可选值范围,通过其值,打印不同的格式输出;

测试4的verbosity值不在可选值范围内,打印错误
测试5打印帮助信息

 

8. 自定义帮助信息help

上面很多例子中都为help赋值,如
parser.add_argument("square", type=int, help="display a square of a given number")
在打印输出时,会有如下内容

positional arguments:

square display a square of a given number
也就是help为什么,打印输出时,就会显示什么

 

9. 程序用法帮助

8中介绍了为每个参数定义帮助文档,那么给整个程序定义帮助文档该怎么进行呢?
通过argparse.ArgumentParser(description="calculate X to the power of Y")即可
修改test.py内容如下:

import argparseparser = argparse.ArgumentParser(description="calculate X to the power of Y")group = parser.add_mutually_exclusive_group()group.add_argument("-v", "--verbose", action="store_true")group.add_argument("-q", "--quiet", action="store_true")parser.add_argument("x", type=int, help="the base")parser.add_argument("y", type=int, help="the exponent")args = parser.parse_args()answer = args.x**args.yif args.quiet:print answerelif args.verbose:print "{} to the power {} equals {}".format(args.x, args.y, answer)else:print "{}^{} == {}".format(args.x, args.y, answer)

打印帮助信息时即显示calculate X to the power of Y

/home $ python test.py -husage: test.py [-h] [-v | -q] x ycalculate X to the power of Ypositional arguments:x the basey the exponentoptional arguments:-h, --help show this help message and exit-v, --verbose-q, --quiet

 

10. 互斥参数

在上个例子中介绍了互斥的参数

group = parser.add_mutually_exclusive_group()group.add_argument("-v", "--verbose", action="store_true")group.add_argument("-q", "--quiet", action="store_true")第一行定义了一个互斥组,第二、三行在互斥组中添加了-v和-q两个参数,用上个例子中的程序进行如下测试:/home $ python test.py 4 2 4^2 == 16/home $ python test.py 4 2 -v4 to the power 2 equals 16/home $ python test.py 4 2 -q16/home $ python test.py 4 2 -q -v

可以看出,-q和-v不出现,或仅出现一个都可以,同时出现就会报错。

可定义多个互斥组

 

11.参数默认值

介绍了这么多,有没有参数默认值该如何定义呢?
修改test.py内容如下:

import argparseparser = argparse.ArgumentParser(description="calculate X to the power of Y")parser.add_argument("square", type=int,help="display a square of a given number")parser.add_argument("-v", "--verbosity", type=int, choices=[0, 1, 2], default=1,help="increase output verbosity")args = parser.parse_args()answer = args.square**2if args.verbosity == 2:print "the square of {} equals {}".format(args.square, answer)elif args.verbosity == 1:print "{}^2 == {}".format(args.square, answer)else:print answer测试:/home $ python test.py 8 8^2 == 64/home $ python test.py 8 -v 064/home $ python test.py 8 -v 18^2 == 64/home $ python test.py 8 -v 2the square of 8 equals 64

可以看到如果不指定-v的值,args.verbosity的值默认为1,为了更清楚的看到默认值,也可以直接打印进行测试。

 

转载于:https://www.cnblogs.com/pugang/p/11381799.html

你可能感兴趣的文章
深入解析spring中用到的九种设计模式
查看>>
swoole之memoryGlobal内存池分析
查看>>
面试问题:Vuejs如何实现双向绑定
查看>>
Java8 list转map 坑
查看>>
调试VBS
查看>>
oracle返回结果集
查看>>
Javascript和jquery事件-鼠标移入移出事件
查看>>
分裂 状压动归
查看>>
c# 重载,继承,重写等介绍,很全面
查看>>
讲课流程
查看>>
程序员的9句名言
查看>>
判断身份证法则
查看>>
Spring第九弹—使用CGLIIB实现AOP功能与AOP概念解释
查看>>
栈与队列_数据结构
查看>>
D - Cheerleaders(第三周)
查看>>
多线程入门
查看>>
一个周末掌握IT前沿技术之node.js篇
查看>>
灵光一现,代码实现
查看>>
循环语句的嵌套及练习题
查看>>
Android开发调试Installation failed since the device possibly has stale dexed jars
查看>>