vote up 0 vote down star

My code:

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

if i had: script -p hello

i need options.test to print out the argument as type string

flag

50% accept rate
If your using optparse it will generate the help info for you automatically. use "parser.print_help()". – monkut Oct 13 at 13:24
I've been looking at that and the library documentation for over an hour now – unknown (google) Oct 13 at 13:28
Why in the world are you using a 'callback' option? Remove the 'action=" and 'callback=' and even 'type=' parameters and it will do what you want. – dalke Oct 14 at 21:37

2 Answers

vote up 0 vote down check

The arguments are available through sys.argv.

link|flag
vote up 0 vote down

Ended up passing the argument to the function that is being called.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.