本文实例讲述了python命令行参数解析OptionParser类的用法,分享给大家供大家参考。
具体代码如下:
from optparse import OptionParser
parser = OptionParser(usage="usage:%prog [optinos] filepath")
parser.add_option("-t", "--timeout",
action = "store",
type = 'int',
dest = "timeout",
default = None,
help="Specify annalysis execution time limit"
)
parser.add_option("-u", "--url",
action = "store_true",
dest = "url",
default = False,
help = "Specify if the target is an URL"
)
(options, args) = parser.parse_args()
if options.url:
print(args[0])
print options.timeout
运行效果图如下:
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:Python命令行参数解析工具 docopt 安装和应用过程详解python 命令行传入参数实现解析Python解析命令行读取参数--argparse模块使用方法Python中的命令行参数解析工具之docopt详解Python命令行参数解析模块optparse使用实例Python命令行参数解析模块getopt使用实例python采用getopt解析命令行输入参数实例python解析命令行参数的三种方法详解