当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Optparse用法及代码示例


Optparse 模块使编写命令行工具变得容易。它允许在 python 程序中进行参数解析。

  • 优化分析使处理命令行参数变得容易。
  • python 是默认的。
  • 它允许动态数据输入来改变输出

代码:创建OptionParser对象。

Python3


import optparse
parser = optparse.OptionParser()


定义选项:

应使用add_option() 一次添加一个。每个 Option 实例代表一组同义的命令行选项字符串。

创建 Option 实例的方法是:

       OptionParser.add_option(option)

       OptionParser.add_option(*opt_str, attr=value, ...)

要定义仅包含短选项字符串的选项:

 parser.add_option("-f", attr=value, ....)

并定义一个仅包含长选项字符串的选项:

parser.add_option("--foo", attr=value, ....)

标准选项操作:

  • “store”: store this option’s argument (default).
  • “store_const”: store a constant value.
  • “store_true”: store True.
  • “store_false”: store False.
  • “append”: append this option’s argument to a list.
  • “append_const”: append a constant value to a list.

标准选项属性:

  • Option.action: (default: “store”)
  • Option.type: (default: “string”)
  • Option.dest: (default: derived from option strings)
  • Option.default: The value to use for this option’s destination if the option is not seen on the command line.

这是在简单脚本中使用 optparse 模块的示例:

Python3


# import OptionParser class 
# from optparse module.
from optparse import OptionParser
# create a OptionParser
# class object
parser = OptionParser()
# add options
parser.add_option("-f", "--file",
                  dest = "filename",
                  help = "write report to FILE", 
                  metavar = "FILE")
parser.add_option("-q", "--quiet",
                  action = "store_false", 
                  dest = "verbose", default = True,
                  help = "don't print status messages to stdout")
(options, args) = parser.parse_args()


通过这几行代码,脚本的用户现在可以在命令行上执行“usual thing”,例如:

<yourscript> --file=outfile -q

让我们通过一个例子来理解:

代码:编写用于打印 n 表的 python 脚本。

Python3


# import optparse module
import optparse
# define a function for 
# table of n
def table(n, dest_cheak):
    for i in range(1,11):
        tab = i*n
         
        if dest_cheak:
            print(tab)
             
    return tab
# define a function for 
# adding options
def Main():
    # create OptionParser object
    parser = optparse.OptionParser()
     
    # add options
    parser.add_option('-n', dest = 'num',
                      type = 'int', 
                      help = 'specify the n''th table number to output')
    parser.add_option('-o', dest = 'out',
                      type = 'string', 
                      help = 'specify an output file (Optional)')
    parser.add_option("-a", "--all", 
                      action = "store_true",
                      dest = "print", 
                      default = False,
                      help = "print all numbers up to N")
     
    (options, args) = parser.parse_args()
    if (options.num == None):
            print (parser.usage)
            exit(0)
    else:
            number = options.num
         
    # function calling
    result = table(number, options.print)
     
    print ("The " + str(number)+ "th table is " + str(result))
    if (options.out != None):
        # open a file in append mode
        f = open(options.out,"a")
         
        # write in the file
        f.write(str(result) + '\n')
# Driver code
if __name__ == '__main__':
     
    # function calling
    Main()

输出:

python file_name.py -n 4

python file_name.py -n 4 -o

file.txt已创建

python file_name.py -n 4 -a

了解有关此模块的更多信息click here.



相关用法


注:本文由纯净天空筛选整理自kumar_satyam大神的英文原创作品 Optparse module in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。