Optik Reference Guide

Populating the parser

There are several ways to populate the parser with options. The preferred way is by using OptionParser.add_option(), as shown in the tutorial. add_option() can be called in one of two ways:

The other alternative is to pass a list of pre-constructed Option instances to the OptionParser constructor, as in:

option_list = [
    make_option("-f", "--filename",
                action="store", type="string", dest="filename"),
    make_option("-q", "--quiet",
                action="store_false", dest="verbose"),
    ]
parser = OptionParser(option_list=option_list)

(make_option() is a factory function for creating Option instances; currently it is an alias for the Option constructor. A future version of Optik may split Option into several classes, and make_option() will pick the right class to instantiate. Do not instantiate Option directly.)

Defining options

Each Option instance represents a set of synonymous command-line option strings, e.g. -f and --file. You can specify any number of short or long option strings, but you must specify at least one overall option string.

The canonical way to create an Option instance is with the add_option() method of OptionParser:

parser.add_option(opt_str, ..., attr=value, ...)

To define an option with only a short option string:

make_option("-f", attr=value, ...)

And to define an option with only a long option string:

make_option("--foo", attr=value, ...)

The attr=value keyword arguments define option attributes, i.e. attributes of the Option object. The most important option attribute is action, and it largely determines what other attributes are relevant or required. If you pass irrelevant option attributes, or fail to pass required ones, Optik raises an OptionError exception explaining your mistake.

An options's action determines what Optik does when it encounters this option on the command-line. The actions hard-coded into Optik are:

store
store this option's argument [default]
store_const
store a constant value
store_true
store a true value
store_false
store a false value
append
append this option's argument to a list
append_const
append a constant value to a list
count
increment a counter by one
callback
call a specified function
help
print a usage message including all options and the documentation for them

(If you don't supply an action, the default is store. For this action, you may also supply type and dest option attributes; see below.)

As you can see, most actions involve storing or updating a value somewhere. Optik always creates an instance of optik.Values specifically for this purpose; we refer to this instance as options. Option arguments (and various other values) are stored as attributes of this object, according to the dest (destination) option attribute.

For example, when you call

parser.parse_args()

one of the first things Optik does is create the options object:

options = Values()

If one of the options in this parser is defined with

make_option("-f", "--file", action="store", type="string", dest="filename")

and the command-line being parsed includes any of the following:

-ffoo
-f foo
--file=foo
--file foo

then Optik, on seeing the -f or --file option, will do the equivalent of

options.filename = "foo"

The type and dest option attributes are almost as important as action, but action is the only one that makes sense for all options.

Standard option actions

The various option actions all have slightly different requirements and effects. Most actions have several relevant option attributes which you may specify to guide Optik's behaviour; a few have required attributes, which you must specify for any option using that action.

Standard option types

Optik has six built-in option types: string, int, long, choice, float and complex. If you need to add new option types, see Extending Optik.

Arguments to string options are not checked or converted in any way: the text on the command line is stored in the destination (or passed to the callback) as-is.

Integer arguments (type int or long) are parsed as follows:
  • if the number starts with 0x, it is parsed as a hexadecimal number
  • if the number starts with 0, it is parsed as an octal number
  • if the number starts with 0b, is is parsed as a binary number
  • otherwise, the number is parsed as a decimal number

The conversion is done by calling either int() or long() with the appropriate base (2, 8, 10, or 16). If this fails, so will Optik, although with a more useful error message.

float and complex option arguments are converted directly with float() and complex(), with similar error-handling.

choice options are a subtype of string options. The choices option attribute (a sequence of strings) defines the set of allowed option arguments. optik.option.check_choice() compares user-supplied option arguments against this master list and raises OptionValueError if an invalid string is given.

Querying and manipulating your option parser

Sometimes, it's useful to poke around your option parser and see what's there. OptionParser provides a couple of methods to help you out:

has_option(opt_str)
Return true if the OptionParser has an option with option string opt_str (e.g., "-q" or "--verbose").
get_option(opt_str)
Returns the Option instance with the option string opt_str, or None if no options have that option string.
remove_option(opt_str)

If the OptionParser has an option corresponding to opt_str, that option is removed. If that option provided any other option strings, all of those option strings become invalid.

If opt_str does not occur in any option belonging to this OptionParser, raises ValueError.

Conflicts between options

If you're not careful, it's easy to define options with conflicting option strings:

parser.add_option("-n", "--dry-run", ...)
[...]
parser.add_option("-n", "--noisy", ...)

(This is particularly true if you've defined your own OptionParser subclass with some standard options.)

Every time you add an option, Optik checks for conflicts with existing options. If it finds any, it invokes the current conflict-handling mechanism. You can set the conflict-handling mechanism either in the constructor:

parser = OptionParser(..., conflict_handler="...")

or with a separate call:

parser.set_conflict_handler("...")

The available conflict-handling mechanisms are:

error (default)
assume option conflicts are a programming error and raise OptionConflictError
resolve
resolve option conflicts intelligently (see below)

As an example, let's define an OptionParser that resolves conflicts intelligently and add conflicting options to it:

parser = OptionParser(conflict_handler="resolve")
parser.add_option("-n", "--dry-run", ..., help="do no harm")
parser.add_option("-n", "--noisy", ..., help="be noisy")

At this point, Optik detects that a previously-added option is already using the "-n" option string. Since conflict_handler is "resolve", it resolves the situation by removing "-n" from the earlier option's list of option strings. Now "--dry-run" is the only way for the user to activate that option. If the user asks for help, the help message will reflect that:

options:
  --dry-run     do no harm
  [...]
  -n, --noisy   be noisy

It's possible to whittle away the option strings for a previously-added option until there are none left, and the user has no way of invoking that option from the command-line. In that case, Optik removes that option completely, so it doesn't show up in help text or anywhere else. Carrying on with our existing OptionParser:

parser.add_option("--dry-run", ..., help="new dry-run option")

At this point, the original -n/--dry-run option is no longer accessible, so Optik removes it, leaving this help text:

options:
  [...]
  -n, --noisy   be noisy
  --dry-run     new dry-run option