Optparse库 - 存储arg时的回调操作

时间:2009-10-13 13:00:29

标签: python ironpython optparse

我的代码:

def main():
    usage = "usage: %prog [options] arg"
    parser = OptionParser(usage)
    parser.add_option("-p", "--pending", action="callback", callback=pending, type="string", dest="test", help="View Pending Jobs")
    (options, args) = parser.parse_args()
    if x == 0:
        print usage, " (-h or --help for help)"
    print options.test

如果我有: script -p hello

我需要options.test将参数打印为类型字符串

2 个答案:

答案 0 :(得分:1)

参数可通过 sys.argv 获得。

答案 1 :(得分:0)

结束将参数传递给正在调用的函数。