I am writing a command-line plugin-based program where the plugins will provide additional functionality on top of whatever I provide.

So for example suppose I wrote a simple script that parsed images and stored them, and that's all I do. Then someone else can write a set of scripts to manipulate the image, putting his scripts in a plugin.

The plugin would be loaded and users can access the plugin by specifying its name in the command line.

It is not uncommon for scripts to want to provide additional options for the user. So suppose in some years, 20 different plugins have been written.

Now, all of the authors want to allow users to provide options, so the main engine should take the user's options and pass them to the plugin so that it can handle them however it wants.

To keep it uniform, they might agree that certain options should perform a similar operation. Like "-o name" should set the output name to "name". They would then go about implementing their own options and stuff, which the main engine does not know about (of course, it shouldn't know what the plugins do)

I am using the deprecated getopt module, and it will throw exceptions whenever I specify an undefined option. I have heard of optparse and argparse, but I am not sure if these will allow the user to specify any options he wants without the code throwing an exception.

How can I make it so I can specify any command-line option?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

argparse lets you partially parse an argument list with the parse_known_args method, returning what was parsed correctly, together with a list of the remaining arguments.

link|improve this answer
I just looked up the docs for argparse and saw that, and it even says "Sometimes a script may only parse a few of the command-line arguments, passing the remaining arguments on to another script or program." lol – Keikoku Aug 18 '11 at 13:57
feedback

The solution you want is probably to treat the command line arguments as a sort of in process pipeline. Which options are also a part of where the options may go.

 command <global options> sub_command <sub_options> new_sub_command <new_sub_options>

each command will shift options off of sys.argv until it finds one it doesn't understand, or one that cannot be a valid option, and then it stops parsing arguments, does its job, and returns control to the plugin-dispatcher.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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