【python】optparse

optparse python

首先,必須 import OptionParser 類,建立一個 OptionParser 對象: app

使用 add_option 來定義命令行參數:每一個命令行參數就是由參數名字符串和參數屬性組成的。如 -f 或者 –file 分別是長短參數名: ui

最後,一旦你已經定義好了全部的命令行參數,調用 parse_args() 來解析程序的命令行:你也能夠傳遞一個命令行參數列表到 parse_args();不然,默認使用 sys.argv[:1]。 this

parse_args() 返回的兩個值: spa

  • options,它是一個對象(optpars.Values),保存有命令行參數值。只要知道命令行參數名,如 file,就能夠訪問其對應的值: options.file 。
  • args,它是一個由 positional arguments 組成的列表。

from optparse import OptionParser  
[...]  
parser = OptionParser()  
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()



<yourscript> --file=outfile -q  
<yourscript> -f outfile --quiet  
<yourscript> --quiet --file outfile  
<yourscript> -q -foutfile  
<yourscript> -qfoutfile



add_option()參數說明:

action:存儲方式,分爲三種store、store_false、store_true 命令行

action 是 parse_args() 方法的參數之一,它指示 optparse 當解析到一個命令行參數時該如何處理。actions 有一組固定的值可供選擇,默認是’store ‘,表示將命令行參數值保存在 options 對象裏 code

type:類型 對象

默認地,type 爲’string’。也正如上面所示,長參數名也是可選的。其實,dest 參數也是可選的。若是沒有指定 dest 參數,將用命令行的參數名來對 options 對象的值進行存取。 ip

store 也有其它的兩種形式: store_true 和 store_false ,用於處理帶命令行參數後面不帶值的狀況。如 -v,-q 等命令行參數:這樣的話,當解析到 ‘-v’,options.verbose 將被賦予 True 值,反之,解析到 ‘-q’,會被賦予 False 值。 字符串

其它的 actions 值還有:store_const 、append 、count 、callback 。

   dest:存儲的變量
   default:默認值
   help:幫助信息

上面這些命令是相同效果的。除此以外, optparse 還爲咱們自動生成命令行的幫助信息:

<yourscript> -h  
<yourscript> --help  
#輸出
usage: <yourscript> [options]  
  
options:  
  -h, --help            show this help message and exit  
  -f FILE, --file=FILE  write report to FILE  
  -q, --quiet           don't print status messages to stdout
相關文章
相關標籤/搜索