没有add_option的Python optparse

时间:2017-03-02 16:19:37

标签: python optparse

是否有可能使用optparse 而无需定义每个可能的选项?我希望我的程序将每个值都视为字符串。

实施例: python program.py --arg1 something --file test.txt

我希望optparse可以存储它 options['arg1']和选项['file']

然后我可以称之为添加我想要的任何参数,例如: python program.py --arg1 something --file test.txt --something value 它只会在没有触及代码的情况下将其添加到选项中

options['arg1']以及options['file']options['something']

我必须保持与Python 2.6和2.7的兼容性,所以我想我不能使用argparse

干杯

0 个答案:

没有答案