2013-06-06 40 views
8

我花了argparse文檔有些時候,但我仍然有這個模塊掙扎在我的節目一個選項:的Python,argparse:如何有NARGS = 2型= STR和類型= INT

parser.add_argument("-r", "--rmsd", dest="rmsd", nargs=2, 
    help="extract the poses that are close from a ref according RMSD", 
    metavar=("ref","rmsd")) 

我想確切地說,第一個參數是一個字符串(type = str)並且是強制性的,而第二個參數是type = int,並且如果沒有給定值有一個默認值(假設default = 50) 。我知道如何做到這一點,當預期只有一個參數時,但當nargs = 2時我不知道如何進行......這甚至可能嗎?

非常感謝,

回答

0

我會建議使用兩個參數:

import argparse 

parser = argparse.ArgumentParser(description='Example with to arguments.') 

parser.add_argument('-r', '--ref', dest='reference', required=True, 
        help='be helpful') 
parser.add_argument('-m', '--rmsd', type=int, dest='reference_msd', 
        default=50, help='be helpful') 

args = parser.parse_args() 
print args.reference 
print args.reference_msd 
8

你可以做到以下幾點。該required關鍵字將字段設置強制性的,default=50如果沒有指定將選項設置爲50的默認值:

import argparse 

parser = argparse.ArgumentParser() 

parser.add_argument("-s", "--string", type=str, required=True) 
parser.add_argument("-i", "--integer", type=int, default=50) 

args = parser.parse_args()  
print args.string 
print args.integer 

輸出:

$ python arg_parser.py -s test_string 
    test_string 
    50 
$ python arg_parser.py -s test_string -i 100 
    test_string 
    100 
$ python arg_parser.py -i 100 
    usage: arg_parser.py [-h] -s STRING [-i INTEGER] 
    arg_parser.py: error: argument -s/--string is required 
5

我傾向於邁克的解決方案達成一致,但這裏的另一個辦法。這並不理想,因爲使用/幫助字符串告訴用戶使用一個或多個參數。

import argparse 

def string_integer(int_default): 
    """Action for argparse that allows a mandatory and optional 
    argument, a string and integer, with a default for the integer. 

    This factory function returns an Action subclass that is 
    configured with the integer default. 
    """ 
    class StringInteger(argparse.Action): 
     """Action to assign a string and optional integer""" 
     def __call__(self, parser, namespace, values, option_string=None): 
      message = '' 
      if len(values) not in [1, 2]: 
       message = 'argument "{}" requires 1 or 2 arguments'.format(
        self.dest) 
      if len(values) == 2: 
       try: 
        values[1] = int(values[1]) 
       except ValueError: 
        message = ('second argument to "{}" requires ' 
           'an integer'.format(self.dest)) 
      else: 
       values.append(int_default) 
      if message: 
       raise argparse.ArgumentError(self, message)    
      setattr(namespace, self.dest, values) 
    return StringInteger 

有了這樣的,你會得到:

>>> import argparse 
>>> parser = argparse.ArgumentParser(description="") 
parser.add_argument('-r', '--rmsd', dest='rmsd', nargs='+', 
...       action=string_integer(50), 
...       help="extract the poses that are close from a ref " 
...       "according RMSD") 
>>> parser.parse_args('-r reference'.split()) 
Namespace(rmsd=['reference', 50]) 
>>> parser.parse_args('-r reference 30'.split()) 
Namespace(rmsd=['reference', 30]) 
>>> parser.parse_args('-r reference 30 3'.split()) 
usage: [-h] [-r RMSD [RMSD ...]] 
: error: argument -r/--rmsd: argument "rmsd" requires 1 or 2 arguments 
>>> parser.parse_args('-r reference 30.3'.split()) 
usage: [-h] [-r RMSD [RMSD ...]] 
: error: argument -r/--rmsd: second argument to "rmsd" requires an integer 
+0

謝謝您的回答,我會想避免,因爲我有說法創造儘可能多的選擇,但我認爲這確實是最簡單的方法! – Bux31

相關問題