0
我的程序有兩個功能。一個沒有任何參數運行,另一個可以有可選的參數。這些羣體不能相互干擾。如何擁有兩個獨立的組
import argparse
parser = argparse.ArgumentParser()
root_group = parser.add_mutually_exclusive_group()
group_export = root_group.add_argument_group()
group_export.add_argument('--export', action='store_true', help='Exports data from database')
group_export.add_argument('-l', action='append', help='Reduce output with league name')
group_export.add_argument('-d', action='append', help='Reduce output with date range')
group_run = root_group.add_argument_group()
group_run.add_argument('--run', action='store_true', help='Start gathering of data')
我想這是允許的:
python file.py --export -l name1 -l name2 -d 1/1/2015
python file.py --export
python file.py --run
而這是不允許的:
python file.py --run --export # Namespace(d=None, export=True, l=None, run=True)
python file.py --run -l name1 # Namespace(d=None, export=False, l=['name1'], run=True)
然而,作爲現在無論是不允許操作的上升一個錯誤,因爲由評論表示。