blob: 5ac11c3c4e6b85bfd1007fc51306f73600ab14f3 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`optparse` --- More powerful command line option parser
2============================================================
3
4.. module:: optparse
5 :synopsis: More convenient, flexible, and powerful command-line parsing library.
6.. moduleauthor:: Greg Ward <gward@python.net>
7
8
9.. versionadded:: 2.3
10
11.. sectionauthor:: Greg Ward <gward@python.net>
12
13
Georg Brandlb926ebb2009-09-17 17:14:04 +000014:mod:`optparse` is a more convenient, flexible, and powerful library for parsing
15command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a
16more declarative style of command-line parsing: you create an instance of
17:class:`OptionParser`, populate it with options, and parse the command
18line. :mod:`optparse` allows users to specify options in the conventional
19GNU/POSIX syntax, and additionally generates usage and help messages for you.
Georg Brandl8ec7f652007-08-15 14:28:01 +000020
Georg Brandlb926ebb2009-09-17 17:14:04 +000021Here's an example of using :mod:`optparse` in a simple script::
Georg Brandl8ec7f652007-08-15 14:28:01 +000022
23 from optparse import OptionParser
24 [...]
25 parser = OptionParser()
26 parser.add_option("-f", "--file", dest="filename",
27 help="write report to FILE", metavar="FILE")
28 parser.add_option("-q", "--quiet",
29 action="store_false", dest="verbose", default=True,
30 help="don't print status messages to stdout")
31
32 (options, args) = parser.parse_args()
33
34With these few lines of code, users of your script can now do the "usual thing"
35on the command-line, for example::
36
37 <yourscript> --file=outfile -q
38
Georg Brandlb926ebb2009-09-17 17:14:04 +000039As it parses the command line, :mod:`optparse` sets attributes of the
40``options`` object returned by :meth:`parse_args` based on user-supplied
41command-line values. When :meth:`parse_args` returns from parsing this command
42line, ``options.filename`` will be ``"outfile"`` and ``options.verbose`` will be
43``False``. :mod:`optparse` supports both long and short options, allows short
Georg Brandl8ec7f652007-08-15 14:28:01 +000044options to be merged together, and allows options to be associated with their
45arguments in a variety of ways. Thus, the following command lines are all
46equivalent to the above example::
47
48 <yourscript> -f outfile --quiet
49 <yourscript> --quiet --file outfile
50 <yourscript> -q -foutfile
51 <yourscript> -qfoutfile
52
53Additionally, users can run one of ::
54
55 <yourscript> -h
56 <yourscript> --help
57
Georg Brandlb926ebb2009-09-17 17:14:04 +000058and :mod:`optparse` will print out a brief summary of your script's options::
Georg Brandl8ec7f652007-08-15 14:28:01 +000059
60 usage: <yourscript> [options]
61
62 options:
63 -h, --help show this help message and exit
64 -f FILE, --file=FILE write report to FILE
65 -q, --quiet don't print status messages to stdout
66
67where the value of *yourscript* is determined at runtime (normally from
68``sys.argv[0]``).
69
Georg Brandl8ec7f652007-08-15 14:28:01 +000070
71.. _optparse-background:
72
73Background
74----------
75
76:mod:`optparse` was explicitly designed to encourage the creation of programs
77with straightforward, conventional command-line interfaces. To that end, it
78supports only the most common command-line syntax and semantics conventionally
79used under Unix. If you are unfamiliar with these conventions, read this
80section to acquaint yourself with them.
81
82
83.. _optparse-terminology:
84
85Terminology
86^^^^^^^^^^^
87
88argument
Georg Brandlb926ebb2009-09-17 17:14:04 +000089 a string entered on the command-line, and passed by the shell to ``execl()``
90 or ``execv()``. In Python, arguments are elements of ``sys.argv[1:]``
91 (``sys.argv[0]`` is the name of the program being executed). Unix shells
92 also use the term "word".
Georg Brandl8ec7f652007-08-15 14:28:01 +000093
94 It is occasionally desirable to substitute an argument list other than
95 ``sys.argv[1:]``, so you should read "argument" as "an element of
96 ``sys.argv[1:]``, or of some other list provided as a substitute for
97 ``sys.argv[1:]``".
98
Andrew M. Kuchling810f8072008-09-06 13:04:02 +000099option
Georg Brandlb926ebb2009-09-17 17:14:04 +0000100 an argument used to supply extra information to guide or customize the
101 execution of a program. There are many different syntaxes for options; the
102 traditional Unix syntax is a hyphen ("-") followed by a single letter,
103 e.g. ``"-x"`` or ``"-F"``. Also, traditional Unix syntax allows multiple
104 options to be merged into a single argument, e.g. ``"-x -F"`` is equivalent
105 to ``"-xF"``. The GNU project introduced ``"--"`` followed by a series of
106 hyphen-separated words, e.g. ``"--file"`` or ``"--dry-run"``. These are the
107 only two option syntaxes provided by :mod:`optparse`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000108
109 Some other option syntaxes that the world has seen include:
110
111 * a hyphen followed by a few letters, e.g. ``"-pf"`` (this is *not* the same
112 as multiple options merged into a single argument)
113
114 * a hyphen followed by a whole word, e.g. ``"-file"`` (this is technically
115 equivalent to the previous syntax, but they aren't usually seen in the same
116 program)
117
118 * a plus sign followed by a single letter, or a few letters, or a word, e.g.
119 ``"+f"``, ``"+rgb"``
120
121 * a slash followed by a letter, or a few letters, or a word, e.g. ``"/f"``,
122 ``"/file"``
123
Georg Brandlb926ebb2009-09-17 17:14:04 +0000124 These option syntaxes are not supported by :mod:`optparse`, and they never
125 will be. This is deliberate: the first three are non-standard on any
126 environment, and the last only makes sense if you're exclusively targeting
127 VMS, MS-DOS, and/or Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000128
129option argument
Georg Brandlb926ebb2009-09-17 17:14:04 +0000130 an argument that follows an option, is closely associated with that option,
131 and is consumed from the argument list when that option is. With
132 :mod:`optparse`, option arguments may either be in a separate argument from
133 their option::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000134
135 -f foo
136 --file foo
137
138 or included in the same argument::
139
140 -ffoo
141 --file=foo
142
Georg Brandlb926ebb2009-09-17 17:14:04 +0000143 Typically, a given option either takes an argument or it doesn't. Lots of
144 people want an "optional option arguments" feature, meaning that some options
145 will take an argument if they see it, and won't if they don't. This is
146 somewhat controversial, because it makes parsing ambiguous: if ``"-a"`` takes
147 an optional argument and ``"-b"`` is another option entirely, how do we
148 interpret ``"-ab"``? Because of this ambiguity, :mod:`optparse` does not
149 support this feature.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150
151positional argument
152 something leftover in the argument list after options have been parsed, i.e.
Georg Brandlb926ebb2009-09-17 17:14:04 +0000153 after options and their arguments have been parsed and removed from the
154 argument list.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000155
156required option
157 an option that must be supplied on the command-line; note that the phrase
158 "required option" is self-contradictory in English. :mod:`optparse` doesn't
Georg Brandlb926ebb2009-09-17 17:14:04 +0000159 prevent you from implementing required options, but doesn't give you much
160 help at it either. See ``examples/required_1.py`` and
161 ``examples/required_2.py`` in the :mod:`optparse` source distribution for two
162 ways to implement required options with :mod:`optparse`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000163
164For example, consider this hypothetical command-line::
165
166 prog -v --report /tmp/report.txt foo bar
167
168``"-v"`` and ``"--report"`` are both options. Assuming that :option:`--report`
169takes one argument, ``"/tmp/report.txt"`` is an option argument. ``"foo"`` and
170``"bar"`` are positional arguments.
171
172
173.. _optparse-what-options-for:
174
175What are options for?
176^^^^^^^^^^^^^^^^^^^^^
177
178Options are used to provide extra information to tune or customize the execution
179of a program. In case it wasn't clear, options are usually *optional*. A
180program should be able to run just fine with no options whatsoever. (Pick a
181random program from the Unix or GNU toolsets. Can it run without any options at
182all and still make sense? The main exceptions are ``find``, ``tar``, and
183``dd``\ ---all of which are mutant oddballs that have been rightly criticized
184for their non-standard syntax and confusing interfaces.)
185
186Lots of people want their programs to have "required options". Think about it.
187If it's required, then it's *not optional*! If there is a piece of information
188that your program absolutely requires in order to run successfully, that's what
189positional arguments are for.
190
191As an example of good command-line interface design, consider the humble ``cp``
192utility, for copying files. It doesn't make much sense to try to copy files
193without supplying a destination and at least one source. Hence, ``cp`` fails if
194you run it with no arguments. However, it has a flexible, useful syntax that
195does not require any options at all::
196
197 cp SOURCE DEST
198 cp SOURCE ... DEST-DIR
199
200You can get pretty far with just that. Most ``cp`` implementations provide a
201bunch of options to tweak exactly how the files are copied: you can preserve
202mode and modification time, avoid following symlinks, ask before clobbering
203existing files, etc. But none of this distracts from the core mission of
204``cp``, which is to copy either one file to another, or several files to another
205directory.
206
207
208.. _optparse-what-positional-arguments-for:
209
210What are positional arguments for?
211^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
212
213Positional arguments are for those pieces of information that your program
214absolutely, positively requires to run.
215
216A good user interface should have as few absolute requirements as possible. If
217your program requires 17 distinct pieces of information in order to run
218successfully, it doesn't much matter *how* you get that information from the
219user---most people will give up and walk away before they successfully run the
220program. This applies whether the user interface is a command-line, a
221configuration file, or a GUI: if you make that many demands on your users, most
222of them will simply give up.
223
224In short, try to minimize the amount of information that users are absolutely
225required to supply---use sensible defaults whenever possible. Of course, you
226also want to make your programs reasonably flexible. That's what options are
227for. Again, it doesn't matter if they are entries in a config file, widgets in
228the "Preferences" dialog of a GUI, or command-line options---the more options
229you implement, the more flexible your program is, and the more complicated its
230implementation becomes. Too much flexibility has drawbacks as well, of course;
231too many options can overwhelm users and make your code much harder to maintain.
232
Georg Brandl8ec7f652007-08-15 14:28:01 +0000233
234.. _optparse-tutorial:
235
236Tutorial
237--------
238
239While :mod:`optparse` is quite flexible and powerful, it's also straightforward
240to use in most cases. This section covers the code patterns that are common to
241any :mod:`optparse`\ -based program.
242
243First, you need to import the OptionParser class; then, early in the main
244program, create an OptionParser instance::
245
246 from optparse import OptionParser
247 [...]
248 parser = OptionParser()
249
250Then you can start defining options. The basic syntax is::
251
252 parser.add_option(opt_str, ...,
253 attr=value, ...)
254
255Each option has one or more option strings, such as ``"-f"`` or ``"--file"``,
256and several option attributes that tell :mod:`optparse` what to expect and what
257to do when it encounters that option on the command line.
258
259Typically, each option will have one short option string and one long option
260string, e.g.::
261
262 parser.add_option("-f", "--file", ...)
263
264You're free to define as many short option strings and as many long option
265strings as you like (including zero), as long as there is at least one option
266string overall.
267
268The option strings passed to :meth:`add_option` are effectively labels for the
269option defined by that call. For brevity, we will frequently refer to
270*encountering an option* on the command line; in reality, :mod:`optparse`
271encounters *option strings* and looks up options from them.
272
273Once all of your options are defined, instruct :mod:`optparse` to parse your
274program's command line::
275
276 (options, args) = parser.parse_args()
277
278(If you like, you can pass a custom argument list to :meth:`parse_args`, but
279that's rarely necessary: by default it uses ``sys.argv[1:]``.)
280
281:meth:`parse_args` returns two values:
282
283* ``options``, an object containing values for all of your options---e.g. if
284 ``"--file"`` takes a single string argument, then ``options.file`` will be the
285 filename supplied by the user, or ``None`` if the user did not supply that
286 option
287
288* ``args``, the list of positional arguments leftover after parsing options
289
290This tutorial section only covers the four most important option attributes:
Georg Brandlb926ebb2009-09-17 17:14:04 +0000291:attr:`~Option.action`, :attr:`~Option.type`, :attr:`~Option.dest`
292(destination), and :attr:`~Option.help`. Of these, :attr:`~Option.action` is the
293most fundamental.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000294
295
296.. _optparse-understanding-option-actions:
297
298Understanding option actions
299^^^^^^^^^^^^^^^^^^^^^^^^^^^^
300
301Actions tell :mod:`optparse` what to do when it encounters an option on the
302command line. There is a fixed set of actions hard-coded into :mod:`optparse`;
303adding new actions is an advanced topic covered in section
Georg Brandlb926ebb2009-09-17 17:14:04 +0000304:ref:`optparse-extending-optparse`. Most actions tell :mod:`optparse` to store
305a value in some variable---for example, take a string from the command line and
306store it in an attribute of ``options``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000307
308If you don't specify an option action, :mod:`optparse` defaults to ``store``.
309
310
311.. _optparse-store-action:
312
313The store action
314^^^^^^^^^^^^^^^^
315
316The most common option action is ``store``, which tells :mod:`optparse` to take
317the next argument (or the remainder of the current argument), ensure that it is
318of the correct type, and store it to your chosen destination.
319
320For example::
321
322 parser.add_option("-f", "--file",
323 action="store", type="string", dest="filename")
324
325Now let's make up a fake command line and ask :mod:`optparse` to parse it::
326
327 args = ["-f", "foo.txt"]
328 (options, args) = parser.parse_args(args)
329
330When :mod:`optparse` sees the option string ``"-f"``, it consumes the next
331argument, ``"foo.txt"``, and stores it in ``options.filename``. So, after this
332call to :meth:`parse_args`, ``options.filename`` is ``"foo.txt"``.
333
334Some other option types supported by :mod:`optparse` are ``int`` and ``float``.
335Here's an option that expects an integer argument::
336
337 parser.add_option("-n", type="int", dest="num")
338
339Note that this option has no long option string, which is perfectly acceptable.
340Also, there's no explicit action, since the default is ``store``.
341
342Let's parse another fake command-line. This time, we'll jam the option argument
343right up against the option: since ``"-n42"`` (one argument) is equivalent to
Georg Brandlb926ebb2009-09-17 17:14:04 +0000344``"-n 42"`` (two arguments), the code ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000345
346 (options, args) = parser.parse_args(["-n42"])
347 print options.num
348
349will print ``"42"``.
350
351If you don't specify a type, :mod:`optparse` assumes ``string``. Combined with
352the fact that the default action is ``store``, that means our first example can
353be a lot shorter::
354
355 parser.add_option("-f", "--file", dest="filename")
356
357If you don't supply a destination, :mod:`optparse` figures out a sensible
358default from the option strings: if the first long option string is
359``"--foo-bar"``, then the default destination is ``foo_bar``. If there are no
360long option strings, :mod:`optparse` looks at the first short option string: the
361default destination for ``"-f"`` is ``f``.
362
363:mod:`optparse` also includes built-in ``long`` and ``complex`` types. Adding
364types is covered in section :ref:`optparse-extending-optparse`.
365
366
367.. _optparse-handling-boolean-options:
368
369Handling boolean (flag) options
370^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
371
372Flag options---set a variable to true or false when a particular option is seen
373---are quite common. :mod:`optparse` supports them with two separate actions,
374``store_true`` and ``store_false``. For example, you might have a ``verbose``
375flag that is turned on with ``"-v"`` and off with ``"-q"``::
376
377 parser.add_option("-v", action="store_true", dest="verbose")
378 parser.add_option("-q", action="store_false", dest="verbose")
379
380Here we have two different options with the same destination, which is perfectly
381OK. (It just means you have to be a bit careful when setting default values---
382see below.)
383
384When :mod:`optparse` encounters ``"-v"`` on the command line, it sets
385``options.verbose`` to ``True``; when it encounters ``"-q"``,
386``options.verbose`` is set to ``False``.
387
388
389.. _optparse-other-actions:
390
391Other actions
392^^^^^^^^^^^^^
393
394Some other actions supported by :mod:`optparse` are:
395
Georg Brandlb926ebb2009-09-17 17:14:04 +0000396``"store_const"``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000397 store a constant value
398
Georg Brandlb926ebb2009-09-17 17:14:04 +0000399``"append"``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000400 append this option's argument to a list
401
Georg Brandlb926ebb2009-09-17 17:14:04 +0000402``"count"``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000403 increment a counter by one
404
Georg Brandlb926ebb2009-09-17 17:14:04 +0000405``"callback"``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000406 call a specified function
407
408These are covered in section :ref:`optparse-reference-guide`, Reference Guide
409and section :ref:`optparse-option-callbacks`.
410
411
412.. _optparse-default-values:
413
414Default values
415^^^^^^^^^^^^^^
416
417All of the above examples involve setting some variable (the "destination") when
418certain command-line options are seen. What happens if those options are never
419seen? Since we didn't supply any defaults, they are all set to ``None``. This
420is usually fine, but sometimes you want more control. :mod:`optparse` lets you
421supply a default value for each destination, which is assigned before the
422command line is parsed.
423
424First, consider the verbose/quiet example. If we want :mod:`optparse` to set
425``verbose`` to ``True`` unless ``"-q"`` is seen, then we can do this::
426
427 parser.add_option("-v", action="store_true", dest="verbose", default=True)
428 parser.add_option("-q", action="store_false", dest="verbose")
429
430Since default values apply to the *destination* rather than to any particular
431option, and these two options happen to have the same destination, this is
432exactly equivalent::
433
434 parser.add_option("-v", action="store_true", dest="verbose")
435 parser.add_option("-q", action="store_false", dest="verbose", default=True)
436
437Consider this::
438
439 parser.add_option("-v", action="store_true", dest="verbose", default=False)
440 parser.add_option("-q", action="store_false", dest="verbose", default=True)
441
442Again, the default value for ``verbose`` will be ``True``: the last default
443value supplied for any particular destination is the one that counts.
444
445A clearer way to specify default values is the :meth:`set_defaults` method of
446OptionParser, which you can call at any time before calling :meth:`parse_args`::
447
448 parser.set_defaults(verbose=True)
449 parser.add_option(...)
450 (options, args) = parser.parse_args()
451
452As before, the last value specified for a given option destination is the one
453that counts. For clarity, try to use one method or the other of setting default
454values, not both.
455
456
457.. _optparse-generating-help:
458
459Generating help
460^^^^^^^^^^^^^^^
461
462:mod:`optparse`'s ability to generate help and usage text automatically is
463useful for creating user-friendly command-line interfaces. All you have to do
Georg Brandlb926ebb2009-09-17 17:14:04 +0000464is supply a :attr:`~Option.help` value for each option, and optionally a short
465usage message for your whole program. Here's an OptionParser populated with
Georg Brandl8ec7f652007-08-15 14:28:01 +0000466user-friendly (documented) options::
467
468 usage = "usage: %prog [options] arg1 arg2"
469 parser = OptionParser(usage=usage)
470 parser.add_option("-v", "--verbose",
471 action="store_true", dest="verbose", default=True,
472 help="make lots of noise [default]")
473 parser.add_option("-q", "--quiet",
Andrew M. Kuchling810f8072008-09-06 13:04:02 +0000474 action="store_false", dest="verbose",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000475 help="be vewwy quiet (I'm hunting wabbits)")
476 parser.add_option("-f", "--filename",
Georg Brandld7226ff2009-09-16 13:06:22 +0000477 metavar="FILE", help="write output to FILE")
Georg Brandl8ec7f652007-08-15 14:28:01 +0000478 parser.add_option("-m", "--mode",
479 default="intermediate",
480 help="interaction mode: novice, intermediate, "
481 "or expert [default: %default]")
482
483If :mod:`optparse` encounters either ``"-h"`` or ``"--help"`` on the
484command-line, or if you just call :meth:`parser.print_help`, it prints the
485following to standard output::
486
487 usage: <yourscript> [options] arg1 arg2
488
489 options:
490 -h, --help show this help message and exit
491 -v, --verbose make lots of noise [default]
492 -q, --quiet be vewwy quiet (I'm hunting wabbits)
493 -f FILE, --filename=FILE
494 write output to FILE
495 -m MODE, --mode=MODE interaction mode: novice, intermediate, or
496 expert [default: intermediate]
497
498(If the help output is triggered by a help option, :mod:`optparse` exits after
499printing the help text.)
500
501There's a lot going on here to help :mod:`optparse` generate the best possible
502help message:
503
504* the script defines its own usage message::
505
506 usage = "usage: %prog [options] arg1 arg2"
507
508 :mod:`optparse` expands ``"%prog"`` in the usage string to the name of the
Georg Brandlb926ebb2009-09-17 17:14:04 +0000509 current program, i.e. ``os.path.basename(sys.argv[0])``. The expanded string
510 is then printed before the detailed option help.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000511
512 If you don't supply a usage string, :mod:`optparse` uses a bland but sensible
Georg Brandlb926ebb2009-09-17 17:14:04 +0000513 default: ``"usage: %prog [options]"``, which is fine if your script doesn't
514 take any positional arguments.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000515
516* every option defines a help string, and doesn't worry about line-wrapping---
517 :mod:`optparse` takes care of wrapping lines and making the help output look
518 good.
519
520* options that take a value indicate this fact in their automatically-generated
521 help message, e.g. for the "mode" option::
522
523 -m MODE, --mode=MODE
524
525 Here, "MODE" is called the meta-variable: it stands for the argument that the
526 user is expected to supply to :option:`-m`/:option:`--mode`. By default,
527 :mod:`optparse` converts the destination variable name to uppercase and uses
Georg Brandlb926ebb2009-09-17 17:14:04 +0000528 that for the meta-variable. Sometimes, that's not what you want---for
529 example, the :option:`--filename` option explicitly sets ``metavar="FILE"``,
530 resulting in this automatically-generated option description::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000531
532 -f FILE, --filename=FILE
533
Georg Brandlb926ebb2009-09-17 17:14:04 +0000534 This is important for more than just saving space, though: the manually
535 written help text uses the meta-variable "FILE" to clue the user in that
536 there's a connection between the semi-formal syntax "-f FILE" and the informal
537 semantic description "write output to FILE". This is a simple but effective
538 way to make your help text a lot clearer and more useful for end users.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000539
Georg Brandl799b3722008-03-25 08:39:10 +0000540.. versionadded:: 2.4
541 Options that have a default value can include ``%default`` in the help
542 string---\ :mod:`optparse` will replace it with :func:`str` of the option's
543 default value. If an option has no default value (or the default value is
544 ``None``), ``%default`` expands to ``none``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000545
Georg Brandlb926ebb2009-09-17 17:14:04 +0000546When dealing with many options, it is convenient to group these options for
547better help output. An :class:`OptionParser` can contain several option groups,
548each of which can contain several options.
Andrew M. Kuchling8b506e72008-01-19 21:00:38 +0000549
Georg Brandlb926ebb2009-09-17 17:14:04 +0000550Continuing with the parser defined above, adding an :class:`OptionGroup` to a
551parser is easy::
Andrew M. Kuchling8b506e72008-01-19 21:00:38 +0000552
553 group = OptionGroup(parser, "Dangerous Options",
Georg Brandl7044b112009-01-03 21:04:55 +0000554 "Caution: use these options at your own risk. "
555 "It is believed that some of them bite.")
Andrew M. Kuchling8b506e72008-01-19 21:00:38 +0000556 group.add_option("-g", action="store_true", help="Group option.")
557 parser.add_option_group(group)
558
559This would result in the following help output::
560
561 usage: [options] arg1 arg2
562
563 options:
564 -h, --help show this help message and exit
565 -v, --verbose make lots of noise [default]
566 -q, --quiet be vewwy quiet (I'm hunting wabbits)
567 -fFILE, --file=FILE write output to FILE
568 -mMODE, --mode=MODE interaction mode: one of 'novice', 'intermediate'
Georg Brandl7044b112009-01-03 21:04:55 +0000569 [default], 'expert'
Andrew M. Kuchling8b506e72008-01-19 21:00:38 +0000570
571 Dangerous Options:
Georg Brandl7044b112009-01-03 21:04:55 +0000572 Caution: use of these options is at your own risk. It is believed that
573 some of them bite.
574 -g Group option.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000575
576.. _optparse-printing-version-string:
577
578Printing a version string
579^^^^^^^^^^^^^^^^^^^^^^^^^
580
581Similar to the brief usage string, :mod:`optparse` can also print a version
582string for your program. You have to supply the string as the ``version``
583argument to OptionParser::
584
585 parser = OptionParser(usage="%prog [-f] [-q]", version="%prog 1.0")
586
587``"%prog"`` is expanded just like it is in ``usage``. Apart from that,
588``version`` can contain anything you like. When you supply it, :mod:`optparse`
589automatically adds a ``"--version"`` option to your parser. If it encounters
590this option on the command line, it expands your ``version`` string (by
591replacing ``"%prog"``), prints it to stdout, and exits.
592
593For example, if your script is called ``/usr/bin/foo``::
594
595 $ /usr/bin/foo --version
596 foo 1.0
597
598
599.. _optparse-how-optparse-handles-errors:
600
601How :mod:`optparse` handles errors
602^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
603
604There are two broad classes of errors that :mod:`optparse` has to worry about:
605programmer errors and user errors. Programmer errors are usually erroneous
Georg Brandlb926ebb2009-09-17 17:14:04 +0000606calls to :func:`OptionParser.add_option`, e.g. invalid option strings, unknown
607option attributes, missing option attributes, etc. These are dealt with in the
608usual way: raise an exception (either :exc:`optparse.OptionError` or
609:exc:`TypeError`) and let the program crash.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000610
611Handling user errors is much more important, since they are guaranteed to happen
612no matter how stable your code is. :mod:`optparse` can automatically detect
613some user errors, such as bad option arguments (passing ``"-n 4x"`` where
614:option:`-n` takes an integer argument), missing arguments (``"-n"`` at the end
615of the command line, where :option:`-n` takes an argument of any type). Also,
Georg Brandlb926ebb2009-09-17 17:14:04 +0000616you can call :func:`OptionParser.error` to signal an application-defined error
Georg Brandl8ec7f652007-08-15 14:28:01 +0000617condition::
618
619 (options, args) = parser.parse_args()
620 [...]
621 if options.a and options.b:
622 parser.error("options -a and -b are mutually exclusive")
623
624In either case, :mod:`optparse` handles the error the same way: it prints the
625program's usage message and an error message to standard error and exits with
626error status 2.
627
628Consider the first example above, where the user passes ``"4x"`` to an option
629that takes an integer::
630
631 $ /usr/bin/foo -n 4x
632 usage: foo [options]
633
634 foo: error: option -n: invalid integer value: '4x'
635
636Or, where the user fails to pass a value at all::
637
638 $ /usr/bin/foo -n
639 usage: foo [options]
640
641 foo: error: -n option requires an argument
642
643:mod:`optparse`\ -generated error messages take care always to mention the
644option involved in the error; be sure to do the same when calling
Georg Brandlb926ebb2009-09-17 17:14:04 +0000645:func:`OptionParser.error` from your application code.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000646
Georg Brandl60c0be32008-06-13 13:26:54 +0000647If :mod:`optparse`'s default error-handling behaviour does not suit your needs,
Georg Brandl0c9eb432009-06-30 16:35:11 +0000648you'll need to subclass OptionParser and override its :meth:`~OptionParser.exit`
649and/or :meth:`~OptionParser.error` methods.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000650
651
652.. _optparse-putting-it-all-together:
653
654Putting it all together
655^^^^^^^^^^^^^^^^^^^^^^^
656
657Here's what :mod:`optparse`\ -based scripts usually look like::
658
659 from optparse import OptionParser
660 [...]
661 def main():
662 usage = "usage: %prog [options] arg"
663 parser = OptionParser(usage)
664 parser.add_option("-f", "--file", dest="filename",
665 help="read data from FILENAME")
666 parser.add_option("-v", "--verbose",
667 action="store_true", dest="verbose")
668 parser.add_option("-q", "--quiet",
669 action="store_false", dest="verbose")
670 [...]
671 (options, args) = parser.parse_args()
672 if len(args) != 1:
673 parser.error("incorrect number of arguments")
674 if options.verbose:
675 print "reading %s..." % options.filename
676 [...]
677
678 if __name__ == "__main__":
679 main()
680
Georg Brandl8ec7f652007-08-15 14:28:01 +0000681
682.. _optparse-reference-guide:
683
684Reference Guide
685---------------
686
687
688.. _optparse-creating-parser:
689
690Creating the parser
691^^^^^^^^^^^^^^^^^^^
692
Georg Brandlb926ebb2009-09-17 17:14:04 +0000693The first step in using :mod:`optparse` is to create an OptionParser instance.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000694
Georg Brandlb926ebb2009-09-17 17:14:04 +0000695.. class:: OptionParser(...)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000696
Georg Brandlb926ebb2009-09-17 17:14:04 +0000697 The OptionParser constructor has no required arguments, but a number of
698 optional keyword arguments. You should always pass them as keyword
699 arguments, i.e. do not rely on the order in which the arguments are declared.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000700
701 ``usage`` (default: ``"%prog [options]"``)
Georg Brandlb926ebb2009-09-17 17:14:04 +0000702 The usage summary to print when your program is run incorrectly or with a
703 help option. When :mod:`optparse` prints the usage string, it expands
704 ``%prog`` to ``os.path.basename(sys.argv[0])`` (or to ``prog`` if you
705 passed that keyword argument). To suppress a usage message, pass the
706 special value :data:`optparse.SUPPRESS_USAGE`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000707
708 ``option_list`` (default: ``[]``)
709 A list of Option objects to populate the parser with. The options in
Georg Brandlb926ebb2009-09-17 17:14:04 +0000710 ``option_list`` are added after any options in ``standard_option_list`` (a
711 class attribute that may be set by OptionParser subclasses), but before
712 any version or help options. Deprecated; use :meth:`add_option` after
713 creating the parser instead.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000714
715 ``option_class`` (default: optparse.Option)
716 Class to use when adding options to the parser in :meth:`add_option`.
717
718 ``version`` (default: ``None``)
Georg Brandlb926ebb2009-09-17 17:14:04 +0000719 A version string to print when the user supplies a version option. If you
720 supply a true value for ``version``, :mod:`optparse` automatically adds a
721 version option with the single option string ``"--version"``. The
722 substring ``"%prog"`` is expanded the same as for ``usage``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000723
724 ``conflict_handler`` (default: ``"error"``)
Georg Brandlb926ebb2009-09-17 17:14:04 +0000725 Specifies what to do when options with conflicting option strings are
726 added to the parser; see section
727 :ref:`optparse-conflicts-between-options`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000728
729 ``description`` (default: ``None``)
Georg Brandlb926ebb2009-09-17 17:14:04 +0000730 A paragraph of text giving a brief overview of your program.
731 :mod:`optparse` reformats this paragraph to fit the current terminal width
732 and prints it when the user requests help (after ``usage``, but before the
733 list of options).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000734
Georg Brandlb926ebb2009-09-17 17:14:04 +0000735 ``formatter`` (default: a new :class:`IndentedHelpFormatter`)
736 An instance of optparse.HelpFormatter that will be used for printing help
737 text. :mod:`optparse` provides two concrete classes for this purpose:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000738 IndentedHelpFormatter and TitledHelpFormatter.
739
740 ``add_help_option`` (default: ``True``)
741 If true, :mod:`optparse` will add a help option (with option strings ``"-h"``
742 and ``"--help"``) to the parser.
743
744 ``prog``
745 The string to use when expanding ``"%prog"`` in ``usage`` and ``version``
746 instead of ``os.path.basename(sys.argv[0])``.
747
748
749
750.. _optparse-populating-parser:
751
752Populating the parser
753^^^^^^^^^^^^^^^^^^^^^
754
755There are several ways to populate the parser with options. The preferred way
Georg Brandlb926ebb2009-09-17 17:14:04 +0000756is by using :meth:`OptionParser.add_option`, as shown in section
Georg Brandl8ec7f652007-08-15 14:28:01 +0000757:ref:`optparse-tutorial`. :meth:`add_option` can be called in one of two ways:
758
759* pass it an Option instance (as returned by :func:`make_option`)
760
761* pass it any combination of positional and keyword arguments that are
Georg Brandlb926ebb2009-09-17 17:14:04 +0000762 acceptable to :func:`make_option` (i.e., to the Option constructor), and it
763 will create the Option instance for you
Georg Brandl8ec7f652007-08-15 14:28:01 +0000764
765The other alternative is to pass a list of pre-constructed Option instances to
766the OptionParser constructor, as in::
767
768 option_list = [
769 make_option("-f", "--filename",
770 action="store", type="string", dest="filename"),
771 make_option("-q", "--quiet",
772 action="store_false", dest="verbose"),
773 ]
774 parser = OptionParser(option_list=option_list)
775
776(:func:`make_option` is a factory function for creating Option instances;
777currently it is an alias for the Option constructor. A future version of
778:mod:`optparse` may split Option into several classes, and :func:`make_option`
779will pick the right class to instantiate. Do not instantiate Option directly.)
780
781
782.. _optparse-defining-options:
783
784Defining options
785^^^^^^^^^^^^^^^^
786
787Each Option instance represents a set of synonymous command-line option strings,
788e.g. :option:`-f` and :option:`--file`. You can specify any number of short or
789long option strings, but you must specify at least one overall option string.
790
Georg Brandlb926ebb2009-09-17 17:14:04 +0000791The canonical way to create an :class:`Option` instance is with the
792:meth:`add_option` method of :class:`OptionParser`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000793
Georg Brandlb926ebb2009-09-17 17:14:04 +0000794.. method:: OptionParser.add_option(opt_str[, ...], attr=value, ...)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000795
Georg Brandlb926ebb2009-09-17 17:14:04 +0000796 To define an option with only a short option string::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000797
Georg Brandlb926ebb2009-09-17 17:14:04 +0000798 parser.add_option("-f", attr=value, ...)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000799
Georg Brandlb926ebb2009-09-17 17:14:04 +0000800 And to define an option with only a long option string::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000801
Georg Brandlb926ebb2009-09-17 17:14:04 +0000802 parser.add_option("--foo", attr=value, ...)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000803
Georg Brandlb926ebb2009-09-17 17:14:04 +0000804 The keyword arguments define attributes of the new Option object. The most
805 important option attribute is :attr:`~Option.action`, and it largely
806 determines which other attributes are relevant or required. If you pass
807 irrelevant option attributes, or fail to pass required ones, :mod:`optparse`
808 raises an :exc:`OptionError` exception explaining your mistake.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000809
Georg Brandlb926ebb2009-09-17 17:14:04 +0000810 An option's *action* determines what :mod:`optparse` does when it encounters
811 this option on the command-line. The standard option actions hard-coded into
812 :mod:`optparse` are:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000813
Georg Brandlb926ebb2009-09-17 17:14:04 +0000814 ``"store"``
815 store this option's argument (default)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000816
Georg Brandlb926ebb2009-09-17 17:14:04 +0000817 ``"store_const"``
818 store a constant value
Georg Brandl8ec7f652007-08-15 14:28:01 +0000819
Georg Brandlb926ebb2009-09-17 17:14:04 +0000820 ``"store_true"``
821 store a true value
Georg Brandl8ec7f652007-08-15 14:28:01 +0000822
Georg Brandlb926ebb2009-09-17 17:14:04 +0000823 ``"store_false"``
824 store a false value
Georg Brandl8ec7f652007-08-15 14:28:01 +0000825
Georg Brandlb926ebb2009-09-17 17:14:04 +0000826 ``"append"``
827 append this option's argument to a list
Georg Brandl8ec7f652007-08-15 14:28:01 +0000828
Georg Brandlb926ebb2009-09-17 17:14:04 +0000829 ``"append_const"``
830 append a constant value to a list
Georg Brandl8ec7f652007-08-15 14:28:01 +0000831
Georg Brandlb926ebb2009-09-17 17:14:04 +0000832 ``"count"``
833 increment a counter by one
Georg Brandl8ec7f652007-08-15 14:28:01 +0000834
Georg Brandlb926ebb2009-09-17 17:14:04 +0000835 ``"callback"``
836 call a specified function
Georg Brandl8ec7f652007-08-15 14:28:01 +0000837
Georg Brandlb926ebb2009-09-17 17:14:04 +0000838 ``"help"``
839 print a usage message including all options and the documentation for them
Georg Brandl8ec7f652007-08-15 14:28:01 +0000840
Georg Brandlb926ebb2009-09-17 17:14:04 +0000841 (If you don't supply an action, the default is ``"store"``. For this action,
842 you may also supply :attr:`~Option.type` and :attr:`~Option.dest` option
843 attributes; see :ref:`optparse-standard-option-actions`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000844
845As you can see, most actions involve storing or updating a value somewhere.
846:mod:`optparse` always creates a special object for this, conventionally called
Georg Brandlb926ebb2009-09-17 17:14:04 +0000847``options`` (it happens to be an instance of :class:`optparse.Values`). Option
Georg Brandl8ec7f652007-08-15 14:28:01 +0000848arguments (and various other values) are stored as attributes of this object,
Georg Brandlb926ebb2009-09-17 17:14:04 +0000849according to the :attr:`~Option.dest` (destination) option attribute.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000850
Georg Brandlb926ebb2009-09-17 17:14:04 +0000851For example, when you call ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000852
853 parser.parse_args()
854
855one of the first things :mod:`optparse` does is create the ``options`` object::
856
857 options = Values()
858
Georg Brandlb926ebb2009-09-17 17:14:04 +0000859If one of the options in this parser is defined with ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000860
861 parser.add_option("-f", "--file", action="store", type="string", dest="filename")
862
863and the command-line being parsed includes any of the following::
864
865 -ffoo
866 -f foo
867 --file=foo
868 --file foo
869
Georg Brandlb926ebb2009-09-17 17:14:04 +0000870then :mod:`optparse`, on seeing this option, will do the equivalent of ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000871
872 options.filename = "foo"
873
Georg Brandlb926ebb2009-09-17 17:14:04 +0000874The :attr:`~Option.type` and :attr:`~Option.dest` option attributes are almost
875as important as :attr:`~Option.action`, but :attr:`~Option.action` is the only
876one that makes sense for *all* options.
877
878
879.. _optparse-option-attributes:
880
881Option attributes
882^^^^^^^^^^^^^^^^^
883
884The following option attributes may be passed as keyword arguments to
885:meth:`OptionParser.add_option`. If you pass an option attribute that is not
886relevant to a particular option, or fail to pass a required option attribute,
887:mod:`optparse` raises :exc:`OptionError`.
888
889.. attribute:: Option.action
890
891 (default: ``"store"``)
892
893 Determines :mod:`optparse`'s behaviour when this option is seen on the
894 command line; the available options are documented :ref:`here
895 <optparse-standard-option-actions>`.
896
897.. attribute:: Option.type
898
899 (default: ``"string"``)
900
901 The argument type expected by this option (e.g., ``"string"`` or ``"int"``);
902 the available option types are documented :ref:`here
903 <optparse-standard-option-types>`.
904
905.. attribute:: Option.dest
906
907 (default: derived from option strings)
908
909 If the option's action implies writing or modifying a value somewhere, this
910 tells :mod:`optparse` where to write it: :attr:`~Option.dest` names an
911 attribute of the ``options`` object that :mod:`optparse` builds as it parses
912 the command line.
913
914.. attribute:: Option.default
915
916 The value to use for this option's destination if the option is not seen on
917 the command line. See also :meth:`OptionParser.set_defaults`.
918
919.. attribute:: Option.nargs
920
921 (default: 1)
922
923 How many arguments of type :attr:`~Option.type` should be consumed when this
924 option is seen. If > 1, :mod:`optparse` will store a tuple of values to
925 :attr:`~Option.dest`.
926
927.. attribute:: Option.const
928
929 For actions that store a constant value, the constant value to store.
930
931.. attribute:: Option.choices
932
933 For options of type ``"choice"``, the list of strings the user may choose
934 from.
935
936.. attribute:: Option.callback
937
938 For options with action ``"callback"``, the callable to call when this option
939 is seen. See section :ref:`optparse-option-callbacks` for detail on the
940 arguments passed to the callable.
941
942.. attribute:: Option.callback_args
943 Option.callback_kwargs
944
945 Additional positional and keyword arguments to pass to ``callback`` after the
946 four standard callback arguments.
947
948.. attribute:: Option.help
949
950 Help text to print for this option when listing all available options after
951 the user supplies a :attr:`~Option.help` option (such as ``"--help"``). If
952 no help text is supplied, the option will be listed without help text. To
953 hide this option, use the special value :data:`optparse.SUPPRESS_HELP`.
954
955.. attribute:: Option.metavar
956
957 (default: derived from option strings)
958
959 Stand-in for the option argument(s) to use when printing help text. See
960 section :ref:`optparse-tutorial` for an example.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000961
962
963.. _optparse-standard-option-actions:
964
965Standard option actions
966^^^^^^^^^^^^^^^^^^^^^^^
967
968The various option actions all have slightly different requirements and effects.
969Most actions have several relevant option attributes which you may specify to
970guide :mod:`optparse`'s behaviour; a few have required attributes, which you
971must specify for any option using that action.
972
Georg Brandlb926ebb2009-09-17 17:14:04 +0000973* ``"store"`` [relevant: :attr:`~Option.type`, :attr:`~Option.dest`,
974 :attr:`~Option.nargs`, :attr:`~Option.choices`]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000975
976 The option must be followed by an argument, which is converted to a value
Georg Brandlb926ebb2009-09-17 17:14:04 +0000977 according to :attr:`~Option.type` and stored in :attr:`~Option.dest`. If
978 :attr:`~Option.nargs` > 1, multiple arguments will be consumed from the
979 command line; all will be converted according to :attr:`~Option.type` and
980 stored to :attr:`~Option.dest` as a tuple. See the
981 :ref:`optparse-standard-option-types` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000982
Georg Brandlb926ebb2009-09-17 17:14:04 +0000983 If :attr:`~Option.choices` is supplied (a list or tuple of strings), the type
984 defaults to ``"choice"``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000985
Georg Brandlb926ebb2009-09-17 17:14:04 +0000986 If :attr:`~Option.type` is not supplied, it defaults to ``"string"``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000987
Georg Brandlb926ebb2009-09-17 17:14:04 +0000988 If :attr:`~Option.dest` is not supplied, :mod:`optparse` derives a destination
989 from the first long option string (e.g., ``"--foo-bar"`` implies
990 ``foo_bar``). If there are no long option strings, :mod:`optparse` derives a
991 destination from the first short option string (e.g., ``"-f"`` implies ``f``).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000992
993 Example::
994
995 parser.add_option("-f")
996 parser.add_option("-p", type="float", nargs=3, dest="point")
997
Georg Brandlb926ebb2009-09-17 17:14:04 +0000998 As it parses the command line ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000999
1000 -f foo.txt -p 1 -3.5 4 -fbar.txt
1001
Georg Brandlb926ebb2009-09-17 17:14:04 +00001002 :mod:`optparse` will set ::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001003
1004 options.f = "foo.txt"
1005 options.point = (1.0, -3.5, 4.0)
1006 options.f = "bar.txt"
1007
Georg Brandlb926ebb2009-09-17 17:14:04 +00001008* ``"store_const"`` [required: :attr:`~Option.const`; relevant:
1009 :attr:`~Option.dest`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001010
Georg Brandlb926ebb2009-09-17 17:14:04 +00001011 The value :attr:`~Option.const` is stored in :attr:`~Option.dest`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001012
1013 Example::
1014
1015 parser.add_option("-q", "--quiet",
1016 action="store_const", const=0, dest="verbose")
1017 parser.add_option("-v", "--verbose",
1018 action="store_const", const=1, dest="verbose")
1019 parser.add_option("--noisy",
1020 action="store_const", const=2, dest="verbose")
1021
1022 If ``"--noisy"`` is seen, :mod:`optparse` will set ::
1023
1024 options.verbose = 2
1025
Georg Brandlb926ebb2009-09-17 17:14:04 +00001026* ``"store_true"`` [relevant: :attr:`~Option.dest`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001027
Georg Brandlb926ebb2009-09-17 17:14:04 +00001028 A special case of ``"store_const"`` that stores a true value to
1029 :attr:`~Option.dest`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001030
Georg Brandlb926ebb2009-09-17 17:14:04 +00001031* ``"store_false"`` [relevant: :attr:`~Option.dest`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001032
Georg Brandlb926ebb2009-09-17 17:14:04 +00001033 Like ``"store_true"``, but stores a false value.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001034
1035 Example::
1036
1037 parser.add_option("--clobber", action="store_true", dest="clobber")
1038 parser.add_option("--no-clobber", action="store_false", dest="clobber")
1039
Georg Brandlb926ebb2009-09-17 17:14:04 +00001040* ``"append"`` [relevant: :attr:`~Option.type`, :attr:`~Option.dest`,
1041 :attr:`~Option.nargs`, :attr:`~Option.choices`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001042
1043 The option must be followed by an argument, which is appended to the list in
Georg Brandlb926ebb2009-09-17 17:14:04 +00001044 :attr:`~Option.dest`. If no default value for :attr:`~Option.dest` is
1045 supplied, an empty list is automatically created when :mod:`optparse` first
1046 encounters this option on the command-line. If :attr:`~Option.nargs` > 1,
1047 multiple arguments are consumed, and a tuple of length :attr:`~Option.nargs`
1048 is appended to :attr:`~Option.dest`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001049
Georg Brandlb926ebb2009-09-17 17:14:04 +00001050 The defaults for :attr:`~Option.type` and :attr:`~Option.dest` are the same as
1051 for the ``"store"`` action.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001052
1053 Example::
1054
1055 parser.add_option("-t", "--tracks", action="append", type="int")
1056
1057 If ``"-t3"`` is seen on the command-line, :mod:`optparse` does the equivalent
1058 of::
1059
1060 options.tracks = []
1061 options.tracks.append(int("3"))
1062
1063 If, a little later on, ``"--tracks=4"`` is seen, it does::
1064
1065 options.tracks.append(int("4"))
1066
Georg Brandlb926ebb2009-09-17 17:14:04 +00001067* ``"append_const"`` [required: :attr:`~Option.const`; relevant:
1068 :attr:`~Option.dest`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001069
Georg Brandlb926ebb2009-09-17 17:14:04 +00001070 Like ``"store_const"``, but the value :attr:`~Option.const` is appended to
1071 :attr:`~Option.dest`; as with ``"append"``, :attr:`~Option.dest` defaults to
1072 ``None``, and an empty list is automatically created the first time the option
1073 is encountered.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001074
Georg Brandlb926ebb2009-09-17 17:14:04 +00001075* ``"count"`` [relevant: :attr:`~Option.dest`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001076
Georg Brandlb926ebb2009-09-17 17:14:04 +00001077 Increment the integer stored at :attr:`~Option.dest`. If no default value is
1078 supplied, :attr:`~Option.dest` is set to zero before being incremented the
1079 first time.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001080
1081 Example::
1082
1083 parser.add_option("-v", action="count", dest="verbosity")
1084
1085 The first time ``"-v"`` is seen on the command line, :mod:`optparse` does the
1086 equivalent of::
1087
1088 options.verbosity = 0
1089 options.verbosity += 1
1090
1091 Every subsequent occurrence of ``"-v"`` results in ::
1092
1093 options.verbosity += 1
1094
Georg Brandlb926ebb2009-09-17 17:14:04 +00001095* ``"callback"`` [required: :attr:`~Option.callback`; relevant:
1096 :attr:`~Option.type`, :attr:`~Option.nargs`, :attr:`~Option.callback_args`,
1097 :attr:`~Option.callback_kwargs`]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001098
Georg Brandlb926ebb2009-09-17 17:14:04 +00001099 Call the function specified by :attr:`~Option.callback`, which is called as ::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001100
1101 func(option, opt_str, value, parser, *args, **kwargs)
1102
1103 See section :ref:`optparse-option-callbacks` for more detail.
1104
Georg Brandlb926ebb2009-09-17 17:14:04 +00001105* ``"help"``
Georg Brandl8ec7f652007-08-15 14:28:01 +00001106
Georg Brandlb926ebb2009-09-17 17:14:04 +00001107 Prints a complete help message for all the options in the current option
1108 parser. The help message is constructed from the ``usage`` string passed to
1109 OptionParser's constructor and the :attr:`~Option.help` string passed to every
1110 option.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001111
Georg Brandlb926ebb2009-09-17 17:14:04 +00001112 If no :attr:`~Option.help` string is supplied for an option, it will still be
1113 listed in the help message. To omit an option entirely, use the special value
1114 :data:`optparse.SUPPRESS_HELP`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001115
Georg Brandlb926ebb2009-09-17 17:14:04 +00001116 :mod:`optparse` automatically adds a :attr:`~Option.help` option to all
1117 OptionParsers, so you do not normally need to create one.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001118
1119 Example::
1120
1121 from optparse import OptionParser, SUPPRESS_HELP
1122
Georg Brandl718b2212009-09-16 13:11:06 +00001123 # usually, a help option is added automatically, but that can
1124 # be suppressed using the add_help_option argument
1125 parser = OptionParser(add_help_option=False)
1126
Georg Brandld7226ff2009-09-16 13:06:22 +00001127 parser.add_option("-h", "--help", action="help")
Georg Brandl8ec7f652007-08-15 14:28:01 +00001128 parser.add_option("-v", action="store_true", dest="verbose",
1129 help="Be moderately verbose")
1130 parser.add_option("--file", dest="filename",
Georg Brandld7226ff2009-09-16 13:06:22 +00001131 help="Input file to read data from")
Georg Brandl8ec7f652007-08-15 14:28:01 +00001132 parser.add_option("--secret", help=SUPPRESS_HELP)
1133
Georg Brandlb926ebb2009-09-17 17:14:04 +00001134 If :mod:`optparse` sees either ``"-h"`` or ``"--help"`` on the command line,
1135 it will print something like the following help message to stdout (assuming
Georg Brandl8ec7f652007-08-15 14:28:01 +00001136 ``sys.argv[0]`` is ``"foo.py"``)::
1137
1138 usage: foo.py [options]
1139
1140 options:
1141 -h, --help Show this help message and exit
1142 -v Be moderately verbose
1143 --file=FILENAME Input file to read data from
1144
1145 After printing the help message, :mod:`optparse` terminates your process with
1146 ``sys.exit(0)``.
1147
Georg Brandlb926ebb2009-09-17 17:14:04 +00001148* ``"version"``
Georg Brandl8ec7f652007-08-15 14:28:01 +00001149
Georg Brandlb926ebb2009-09-17 17:14:04 +00001150 Prints the version number supplied to the OptionParser to stdout and exits.
1151 The version number is actually formatted and printed by the
1152 ``print_version()`` method of OptionParser. Generally only relevant if the
1153 ``version`` argument is supplied to the OptionParser constructor. As with
1154 :attr:`~Option.help` options, you will rarely create ``version`` options,
1155 since :mod:`optparse` automatically adds them when needed.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001156
1157
1158.. _optparse-standard-option-types:
1159
1160Standard option types
1161^^^^^^^^^^^^^^^^^^^^^
1162
Georg Brandlb926ebb2009-09-17 17:14:04 +00001163:mod:`optparse` has six built-in option types: ``"string"``, ``"int"``,
1164``"long"``, ``"choice"``, ``"float"`` and ``"complex"``. If you need to add new
1165option types, see section :ref:`optparse-extending-optparse`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001166
1167Arguments to string options are not checked or converted in any way: the text on
1168the command line is stored in the destination (or passed to the callback) as-is.
1169
Georg Brandlb926ebb2009-09-17 17:14:04 +00001170Integer arguments (type ``"int"`` or ``"long"``) are parsed as follows:
Georg Brandl8ec7f652007-08-15 14:28:01 +00001171
1172* if the number starts with ``0x``, it is parsed as a hexadecimal number
1173
1174* if the number starts with ``0``, it is parsed as an octal number
1175
Georg Brandl97ca5832007-09-24 17:55:47 +00001176* if the number starts with ``0b``, it is parsed as a binary number
Georg Brandl8ec7f652007-08-15 14:28:01 +00001177
1178* otherwise, the number is parsed as a decimal number
1179
1180
Georg Brandlb926ebb2009-09-17 17:14:04 +00001181The conversion is done by calling either :func:`int` or :func:`long` with the
Georg Brandl8ec7f652007-08-15 14:28:01 +00001182appropriate base (2, 8, 10, or 16). If this fails, so will :mod:`optparse`,
1183although with a more useful error message.
1184
Georg Brandlb926ebb2009-09-17 17:14:04 +00001185``"float"`` and ``"complex"`` option arguments are converted directly with
1186:func:`float` and :func:`complex`, with similar error-handling.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001187
Georg Brandlb926ebb2009-09-17 17:14:04 +00001188``"choice"`` options are a subtype of ``"string"`` options. The
1189:attr:`~Option.choices`` option attribute (a sequence of strings) defines the
1190set of allowed option arguments. :func:`optparse.check_choice` compares
1191user-supplied option arguments against this master list and raises
1192:exc:`OptionValueError` if an invalid string is given.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001193
1194
1195.. _optparse-parsing-arguments:
1196
1197Parsing arguments
1198^^^^^^^^^^^^^^^^^
1199
1200The whole point of creating and populating an OptionParser is to call its
1201:meth:`parse_args` method::
1202
1203 (options, args) = parser.parse_args(args=None, values=None)
1204
1205where the input parameters are
1206
1207``args``
1208 the list of arguments to process (default: ``sys.argv[1:]``)
1209
1210``values``
Georg Brandl8514b852009-09-01 08:06:03 +00001211 object to store option arguments in (default: a new instance of
1212 :class:`optparse.Values`)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001213
1214and the return values are
1215
1216``options``
Georg Brandl8514b852009-09-01 08:06:03 +00001217 the same object that was passed in as ``values``, or the optparse.Values
Georg Brandl8ec7f652007-08-15 14:28:01 +00001218 instance created by :mod:`optparse`
1219
1220``args``
1221 the leftover positional arguments after all options have been processed
1222
1223The most common usage is to supply neither keyword argument. If you supply
Georg Brandlb926ebb2009-09-17 17:14:04 +00001224``values``, it will be modified with repeated :func:`setattr` calls (roughly one
Georg Brandl8ec7f652007-08-15 14:28:01 +00001225for every option argument stored to an option destination) and returned by
1226:meth:`parse_args`.
1227
1228If :meth:`parse_args` encounters any errors in the argument list, it calls the
1229OptionParser's :meth:`error` method with an appropriate end-user error message.
1230This ultimately terminates your process with an exit status of 2 (the
1231traditional Unix exit status for command-line errors).
1232
1233
1234.. _optparse-querying-manipulating-option-parser:
1235
1236Querying and manipulating your option parser
1237^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1238
Georg Brandlb926ebb2009-09-17 17:14:04 +00001239The default behavior of the option parser can be customized slightly, and you
1240can also poke around your option parser and see what's there. OptionParser
1241provides several methods to help you out:
Georg Brandl8ec7f652007-08-15 14:28:01 +00001242
Georg Brandlb926ebb2009-09-17 17:14:04 +00001243.. method:: OptionParser.disable_interspersed_args()
Georg Brandl7842a412009-09-17 16:26:06 +00001244
Georg Brandlb926ebb2009-09-17 17:14:04 +00001245 Set parsing to stop on the first non-option. For example, if ``"-a"`` and
1246 ``"-b"`` are both simple options that take no arguments, :mod:`optparse`
1247 normally accepts this syntax::
Georg Brandl7842a412009-09-17 16:26:06 +00001248
Georg Brandlb926ebb2009-09-17 17:14:04 +00001249 prog -a arg1 -b arg2
Georg Brandl7842a412009-09-17 16:26:06 +00001250
Georg Brandlb926ebb2009-09-17 17:14:04 +00001251 and treats it as equivalent to ::
Georg Brandl7842a412009-09-17 16:26:06 +00001252
Georg Brandlb926ebb2009-09-17 17:14:04 +00001253 prog -a -b arg1 arg2
Georg Brandl7842a412009-09-17 16:26:06 +00001254
Georg Brandlb926ebb2009-09-17 17:14:04 +00001255 To disable this feature, call :meth:`disable_interspersed_args`. This
1256 restores traditional Unix syntax, where option parsing stops with the first
1257 non-option argument.
Andrew M. Kuchling7a4a93b2008-09-28 01:08:47 +00001258
Georg Brandlb926ebb2009-09-17 17:14:04 +00001259 Use this if you have a command processor which runs another command which has
1260 options of its own and you want to make sure these options don't get
1261 confused. For example, each command might have a different set of options.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001262
Georg Brandlb926ebb2009-09-17 17:14:04 +00001263.. method:: OptionParser.enable_interspersed_args()
1264
1265 Set parsing to not stop on the first non-option, allowing interspersing
1266 switches with command arguments. This is the default behavior.
1267
1268.. method:: OptionParser.get_option(opt_str)
1269
1270 Returns the Option instance with the option string *opt_str*, or ``None`` if
Georg Brandl8ec7f652007-08-15 14:28:01 +00001271 no options have that option string.
1272
Georg Brandlb926ebb2009-09-17 17:14:04 +00001273.. method:: OptionParser.has_option(opt_str)
1274
1275 Return true if the OptionParser has an option with option string *opt_str*
Andrew M. Kuchling7a4a93b2008-09-28 01:08:47 +00001276 (e.g., ``"-q"`` or ``"--verbose"``).
1277
Georg Brandlb926ebb2009-09-17 17:14:04 +00001278.. method:: OptionParser.remove_option(opt_str)
1279
1280 If the :class:`OptionParser` has an option corresponding to *opt_str*, that
1281 option is removed. If that option provided any other option strings, all of
1282 those option strings become invalid. If *opt_str* does not occur in any
1283 option belonging to this :class:`OptionParser`, raises :exc:`ValueError`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001284
1285
1286.. _optparse-conflicts-between-options:
1287
1288Conflicts between options
1289^^^^^^^^^^^^^^^^^^^^^^^^^
1290
1291If you're not careful, it's easy to define options with conflicting option
1292strings::
1293
1294 parser.add_option("-n", "--dry-run", ...)
1295 [...]
1296 parser.add_option("-n", "--noisy", ...)
1297
1298(This is particularly true if you've defined your own OptionParser subclass with
1299some standard options.)
1300
1301Every time you add an option, :mod:`optparse` checks for conflicts with existing
1302options. If it finds any, it invokes the current conflict-handling mechanism.
1303You can set the conflict-handling mechanism either in the constructor::
1304
1305 parser = OptionParser(..., conflict_handler=handler)
1306
1307or with a separate call::
1308
1309 parser.set_conflict_handler(handler)
1310
1311The available conflict handlers are:
1312
Georg Brandlb926ebb2009-09-17 17:14:04 +00001313 ``"error"`` (default)
1314 assume option conflicts are a programming error and raise
1315 :exc:`OptionConflictError`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001316
Georg Brandlb926ebb2009-09-17 17:14:04 +00001317 ``"resolve"``
Georg Brandl8ec7f652007-08-15 14:28:01 +00001318 resolve option conflicts intelligently (see below)
1319
1320
Andrew M. Kuchlingcad8da82008-09-30 13:01:46 +00001321As an example, let's define an :class:`OptionParser` that resolves conflicts
Georg Brandl8ec7f652007-08-15 14:28:01 +00001322intelligently and add conflicting options to it::
1323
1324 parser = OptionParser(conflict_handler="resolve")
1325 parser.add_option("-n", "--dry-run", ..., help="do no harm")
1326 parser.add_option("-n", "--noisy", ..., help="be noisy")
1327
1328At this point, :mod:`optparse` detects that a previously-added option is already
1329using the ``"-n"`` option string. Since ``conflict_handler`` is ``"resolve"``,
1330it resolves the situation by removing ``"-n"`` from the earlier option's list of
1331option strings. Now ``"--dry-run"`` is the only way for the user to activate
1332that option. If the user asks for help, the help message will reflect that::
1333
1334 options:
1335 --dry-run do no harm
1336 [...]
1337 -n, --noisy be noisy
1338
1339It's possible to whittle away the option strings for a previously-added option
1340until there are none left, and the user has no way of invoking that option from
1341the command-line. In that case, :mod:`optparse` removes that option completely,
1342so it doesn't show up in help text or anywhere else. Carrying on with our
1343existing OptionParser::
1344
1345 parser.add_option("--dry-run", ..., help="new dry-run option")
1346
1347At this point, the original :option:`-n/--dry-run` option is no longer
1348accessible, so :mod:`optparse` removes it, leaving this help text::
1349
1350 options:
1351 [...]
1352 -n, --noisy be noisy
1353 --dry-run new dry-run option
1354
1355
1356.. _optparse-cleanup:
1357
1358Cleanup
1359^^^^^^^
1360
1361OptionParser instances have several cyclic references. This should not be a
1362problem for Python's garbage collector, but you may wish to break the cyclic
Georg Brandlb926ebb2009-09-17 17:14:04 +00001363references explicitly by calling :meth:`~OptionParser.destroy` on your
1364OptionParser once you are done with it. This is particularly useful in
1365long-running applications where large object graphs are reachable from your
1366OptionParser.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001367
1368
1369.. _optparse-other-methods:
1370
1371Other methods
1372^^^^^^^^^^^^^
1373
1374OptionParser supports several other public methods:
1375
Georg Brandlb926ebb2009-09-17 17:14:04 +00001376.. method:: OptionParser.set_usage(usage)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001377
Georg Brandlb926ebb2009-09-17 17:14:04 +00001378 Set the usage string according to the rules described above for the ``usage``
1379 constructor keyword argument. Passing ``None`` sets the default usage
1380 string; use :data:`optparse.SUPPRESS_USAGE` to suppress a usage message.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001381
Georg Brandlb926ebb2009-09-17 17:14:04 +00001382.. method:: OptionParser.set_defaults(dest=value, ...)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001383
Georg Brandlb926ebb2009-09-17 17:14:04 +00001384 Set default values for several option destinations at once. Using
1385 :meth:`set_defaults` is the preferred way to set default values for options,
1386 since multiple options can share the same destination. For example, if
1387 several "mode" options all set the same destination, any one of them can set
1388 the default, and the last one wins::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001389
Georg Brandlb926ebb2009-09-17 17:14:04 +00001390 parser.add_option("--advanced", action="store_const",
1391 dest="mode", const="advanced",
1392 default="novice") # overridden below
1393 parser.add_option("--novice", action="store_const",
1394 dest="mode", const="novice",
1395 default="advanced") # overrides above setting
Georg Brandl8ec7f652007-08-15 14:28:01 +00001396
Georg Brandlb926ebb2009-09-17 17:14:04 +00001397 To avoid this confusion, use :meth:`set_defaults`::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001398
Georg Brandlb926ebb2009-09-17 17:14:04 +00001399 parser.set_defaults(mode="advanced")
1400 parser.add_option("--advanced", action="store_const",
1401 dest="mode", const="advanced")
1402 parser.add_option("--novice", action="store_const",
1403 dest="mode", const="novice")
Georg Brandl8ec7f652007-08-15 14:28:01 +00001404
Georg Brandl8ec7f652007-08-15 14:28:01 +00001405
1406.. _optparse-option-callbacks:
1407
1408Option Callbacks
1409----------------
1410
1411When :mod:`optparse`'s built-in actions and types aren't quite enough for your
1412needs, you have two choices: extend :mod:`optparse` or define a callback option.
1413Extending :mod:`optparse` is more general, but overkill for a lot of simple
1414cases. Quite often a simple callback is all you need.
1415
1416There are two steps to defining a callback option:
1417
Georg Brandlb926ebb2009-09-17 17:14:04 +00001418* define the option itself using the ``"callback"`` action
Georg Brandl8ec7f652007-08-15 14:28:01 +00001419
1420* write the callback; this is a function (or method) that takes at least four
1421 arguments, as described below
1422
1423
1424.. _optparse-defining-callback-option:
1425
1426Defining a callback option
1427^^^^^^^^^^^^^^^^^^^^^^^^^^
1428
1429As always, the easiest way to define a callback option is by using the
Georg Brandlb926ebb2009-09-17 17:14:04 +00001430:meth:`OptionParser.add_option` method. Apart from :attr:`~Option.action`, the
1431only option attribute you must specify is ``callback``, the function to call::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001432
1433 parser.add_option("-c", action="callback", callback=my_callback)
1434
1435``callback`` is a function (or other callable object), so you must have already
1436defined ``my_callback()`` when you create this callback option. In this simple
1437case, :mod:`optparse` doesn't even know if :option:`-c` takes any arguments,
1438which usually means that the option takes no arguments---the mere presence of
1439:option:`-c` on the command-line is all it needs to know. In some
1440circumstances, though, you might want your callback to consume an arbitrary
1441number of command-line arguments. This is where writing callbacks gets tricky;
1442it's covered later in this section.
1443
1444:mod:`optparse` always passes four particular arguments to your callback, and it
Georg Brandlb926ebb2009-09-17 17:14:04 +00001445will only pass additional arguments if you specify them via
1446:attr:`~Option.callback_args` and :attr:`~Option.callback_kwargs`. Thus, the
1447minimal callback function signature is::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001448
1449 def my_callback(option, opt, value, parser):
1450
1451The four arguments to a callback are described below.
1452
1453There are several other option attributes that you can supply when you define a
1454callback option:
1455
Georg Brandlb926ebb2009-09-17 17:14:04 +00001456:attr:`~Option.type`
1457 has its usual meaning: as with the ``"store"`` or ``"append"`` actions, it
1458 instructs :mod:`optparse` to consume one argument and convert it to
1459 :attr:`~Option.type`. Rather than storing the converted value(s) anywhere,
1460 though, :mod:`optparse` passes it to your callback function.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001461
Georg Brandlb926ebb2009-09-17 17:14:04 +00001462:attr:`~Option.nargs`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001463 also has its usual meaning: if it is supplied and > 1, :mod:`optparse` will
Georg Brandlb926ebb2009-09-17 17:14:04 +00001464 consume :attr:`~Option.nargs` arguments, each of which must be convertible to
1465 :attr:`~Option.type`. It then passes a tuple of converted values to your
1466 callback.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001467
Georg Brandlb926ebb2009-09-17 17:14:04 +00001468:attr:`~Option.callback_args`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001469 a tuple of extra positional arguments to pass to the callback
1470
Georg Brandlb926ebb2009-09-17 17:14:04 +00001471:attr:`~Option.callback_kwargs`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001472 a dictionary of extra keyword arguments to pass to the callback
1473
1474
1475.. _optparse-how-callbacks-called:
1476
1477How callbacks are called
1478^^^^^^^^^^^^^^^^^^^^^^^^
1479
1480All callbacks are called as follows::
1481
1482 func(option, opt_str, value, parser, *args, **kwargs)
1483
1484where
1485
1486``option``
1487 is the Option instance that's calling the callback
1488
1489``opt_str``
1490 is the option string seen on the command-line that's triggering the callback.
Georg Brandlb926ebb2009-09-17 17:14:04 +00001491 (If an abbreviated long option was used, ``opt_str`` will be the full,
1492 canonical option string---e.g. if the user puts ``"--foo"`` on the
1493 command-line as an abbreviation for ``"--foobar"``, then ``opt_str`` will be
1494 ``"--foobar"``.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001495
1496``value``
1497 is the argument to this option seen on the command-line. :mod:`optparse` will
Georg Brandlb926ebb2009-09-17 17:14:04 +00001498 only expect an argument if :attr:`~Option.type` is set; the type of ``value`` will be
1499 the type implied by the option's type. If :attr:`~Option.type` for this option is
1500 ``None`` (no argument expected), then ``value`` will be ``None``. If :attr:`~Option.nargs`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001501 > 1, ``value`` will be a tuple of values of the appropriate type.
1502
1503``parser``
Georg Brandlb926ebb2009-09-17 17:14:04 +00001504 is the OptionParser instance driving the whole thing, mainly useful because
1505 you can access some other interesting data through its instance attributes:
Georg Brandl8ec7f652007-08-15 14:28:01 +00001506
1507 ``parser.largs``
Georg Brandlb926ebb2009-09-17 17:14:04 +00001508 the current list of leftover arguments, ie. arguments that have been
1509 consumed but are neither options nor option arguments. Feel free to modify
1510 ``parser.largs``, e.g. by adding more arguments to it. (This list will
1511 become ``args``, the second return value of :meth:`parse_args`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001512
1513 ``parser.rargs``
Georg Brandlb926ebb2009-09-17 17:14:04 +00001514 the current list of remaining arguments, ie. with ``opt_str`` and
1515 ``value`` (if applicable) removed, and only the arguments following them
1516 still there. Feel free to modify ``parser.rargs``, e.g. by consuming more
1517 arguments.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001518
1519 ``parser.values``
1520 the object where option values are by default stored (an instance of
Georg Brandlb926ebb2009-09-17 17:14:04 +00001521 optparse.OptionValues). This lets callbacks use the same mechanism as the
1522 rest of :mod:`optparse` for storing option values; you don't need to mess
1523 around with globals or closures. You can also access or modify the
1524 value(s) of any options already encountered on the command-line.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001525
1526``args``
Georg Brandlb926ebb2009-09-17 17:14:04 +00001527 is a tuple of arbitrary positional arguments supplied via the
1528 :attr:`~Option.callback_args` option attribute.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001529
1530``kwargs``
Georg Brandlb926ebb2009-09-17 17:14:04 +00001531 is a dictionary of arbitrary keyword arguments supplied via
1532 :attr:`~Option.callback_kwargs`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001533
1534
1535.. _optparse-raising-errors-in-callback:
1536
1537Raising errors in a callback
1538^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1539
Georg Brandlb926ebb2009-09-17 17:14:04 +00001540The callback function should raise :exc:`OptionValueError` if there are any
1541problems with the option or its argument(s). :mod:`optparse` catches this and
1542terminates the program, printing the error message you supply to stderr. Your
1543message should be clear, concise, accurate, and mention the option at fault.
1544Otherwise, the user will have a hard time figuring out what he did wrong.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001545
1546
1547.. _optparse-callback-example-1:
1548
1549Callback example 1: trivial callback
1550^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1551
1552Here's an example of a callback option that takes no arguments, and simply
1553records that the option was seen::
1554
1555 def record_foo_seen(option, opt_str, value, parser):
Georg Brandl253a29f2009-02-05 11:33:21 +00001556 parser.values.saw_foo = True
Georg Brandl8ec7f652007-08-15 14:28:01 +00001557
1558 parser.add_option("--foo", action="callback", callback=record_foo_seen)
1559
Georg Brandlb926ebb2009-09-17 17:14:04 +00001560Of course, you could do that with the ``"store_true"`` action.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001561
1562
1563.. _optparse-callback-example-2:
1564
1565Callback example 2: check option order
1566^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1567
1568Here's a slightly more interesting example: record the fact that ``"-a"`` is
1569seen, but blow up if it comes after ``"-b"`` in the command-line. ::
1570
1571 def check_order(option, opt_str, value, parser):
1572 if parser.values.b:
1573 raise OptionValueError("can't use -a after -b")
1574 parser.values.a = 1
1575 [...]
1576 parser.add_option("-a", action="callback", callback=check_order)
1577 parser.add_option("-b", action="store_true", dest="b")
1578
1579
1580.. _optparse-callback-example-3:
1581
1582Callback example 3: check option order (generalized)
1583^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1584
1585If you want to re-use this callback for several similar options (set a flag, but
1586blow up if ``"-b"`` has already been seen), it needs a bit of work: the error
1587message and the flag that it sets must be generalized. ::
1588
1589 def check_order(option, opt_str, value, parser):
1590 if parser.values.b:
1591 raise OptionValueError("can't use %s after -b" % opt_str)
1592 setattr(parser.values, option.dest, 1)
1593 [...]
1594 parser.add_option("-a", action="callback", callback=check_order, dest='a')
1595 parser.add_option("-b", action="store_true", dest="b")
1596 parser.add_option("-c", action="callback", callback=check_order, dest='c')
1597
1598
1599.. _optparse-callback-example-4:
1600
1601Callback example 4: check arbitrary condition
1602^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1603
1604Of course, you could put any condition in there---you're not limited to checking
1605the values of already-defined options. For example, if you have options that
1606should not be called when the moon is full, all you have to do is this::
1607
1608 def check_moon(option, opt_str, value, parser):
1609 if is_moon_full():
1610 raise OptionValueError("%s option invalid when moon is full"
1611 % opt_str)
1612 setattr(parser.values, option.dest, 1)
1613 [...]
1614 parser.add_option("--foo",
1615 action="callback", callback=check_moon, dest="foo")
1616
1617(The definition of ``is_moon_full()`` is left as an exercise for the reader.)
1618
1619
1620.. _optparse-callback-example-5:
1621
1622Callback example 5: fixed arguments
1623^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1624
1625Things get slightly more interesting when you define callback options that take
1626a fixed number of arguments. Specifying that a callback option takes arguments
Georg Brandlb926ebb2009-09-17 17:14:04 +00001627is similar to defining a ``"store"`` or ``"append"`` option: if you define
1628:attr:`~Option.type`, then the option takes one argument that must be
1629convertible to that type; if you further define :attr:`~Option.nargs`, then the
1630option takes :attr:`~Option.nargs` arguments.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001631
Georg Brandlb926ebb2009-09-17 17:14:04 +00001632Here's an example that just emulates the standard ``"store"`` action::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001633
1634 def store_value(option, opt_str, value, parser):
1635 setattr(parser.values, option.dest, value)
1636 [...]
1637 parser.add_option("--foo",
1638 action="callback", callback=store_value,
1639 type="int", nargs=3, dest="foo")
1640
1641Note that :mod:`optparse` takes care of consuming 3 arguments and converting
1642them to integers for you; all you have to do is store them. (Or whatever;
1643obviously you don't need a callback for this example.)
1644
1645
1646.. _optparse-callback-example-6:
1647
1648Callback example 6: variable arguments
1649^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1650
1651Things get hairy when you want an option to take a variable number of arguments.
1652For this case, you must write a callback, as :mod:`optparse` doesn't provide any
1653built-in capabilities for it. And you have to deal with certain intricacies of
1654conventional Unix command-line parsing that :mod:`optparse` normally handles for
1655you. In particular, callbacks should implement the conventional rules for bare
1656``"--"`` and ``"-"`` arguments:
1657
1658* either ``"--"`` or ``"-"`` can be option arguments
1659
1660* bare ``"--"`` (if not the argument to some option): halt command-line
1661 processing and discard the ``"--"``
1662
1663* bare ``"-"`` (if not the argument to some option): halt command-line
1664 processing but keep the ``"-"`` (append it to ``parser.largs``)
1665
1666If you want an option that takes a variable number of arguments, there are
1667several subtle, tricky issues to worry about. The exact implementation you
1668choose will be based on which trade-offs you're willing to make for your
1669application (which is why :mod:`optparse` doesn't support this sort of thing
1670directly).
1671
1672Nevertheless, here's a stab at a callback for an option with variable
1673arguments::
1674
Georg Brandl60b2e382008-12-15 09:07:39 +00001675 def vararg_callback(option, opt_str, value, parser):
1676 assert value is None
1677 value = []
Georg Brandl8ec7f652007-08-15 14:28:01 +00001678
Georg Brandl60b2e382008-12-15 09:07:39 +00001679 def floatable(str):
1680 try:
1681 float(str)
1682 return True
1683 except ValueError:
1684 return False
Georg Brandl8ec7f652007-08-15 14:28:01 +00001685
Georg Brandl60b2e382008-12-15 09:07:39 +00001686 for arg in parser.rargs:
1687 # stop on --foo like options
1688 if arg[:2] == "--" and len(arg) > 2:
1689 break
1690 # stop on -a, but not on -3 or -3.0
1691 if arg[:1] == "-" and len(arg) > 1 and not floatable(arg):
1692 break
1693 value.append(arg)
1694
1695 del parser.rargs[:len(value)]
Georg Brandl174fbe72009-02-05 10:30:57 +00001696 setattr(parser.values, option.dest, value)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001697
1698 [...]
Andrew M. Kuchling810f8072008-09-06 13:04:02 +00001699 parser.add_option("-c", "--callback", dest="vararg_attr",
Benjamin Petersonc8590942008-04-23 20:38:06 +00001700 action="callback", callback=vararg_callback)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001701
Georg Brandl8ec7f652007-08-15 14:28:01 +00001702
1703.. _optparse-extending-optparse:
1704
1705Extending :mod:`optparse`
1706-------------------------
1707
1708Since the two major controlling factors in how :mod:`optparse` interprets
1709command-line options are the action and type of each option, the most likely
1710direction of extension is to add new actions and new types.
1711
1712
1713.. _optparse-adding-new-types:
1714
1715Adding new types
1716^^^^^^^^^^^^^^^^
1717
1718To add new types, you need to define your own subclass of :mod:`optparse`'s
Georg Brandlb926ebb2009-09-17 17:14:04 +00001719:class:`Option` class. This class has a couple of attributes that define
1720:mod:`optparse`'s types: :attr:`~Option.TYPES` and :attr:`~Option.TYPE_CHECKER`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001721
Georg Brandlb926ebb2009-09-17 17:14:04 +00001722.. attribute:: Option.TYPES
Georg Brandl8ec7f652007-08-15 14:28:01 +00001723
Georg Brandlb926ebb2009-09-17 17:14:04 +00001724 A tuple of type names; in your subclass, simply define a new tuple
1725 :attr:`TYPES` that builds on the standard one.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001726
Georg Brandlb926ebb2009-09-17 17:14:04 +00001727.. attribute:: Option.TYPE_CHECKER
Georg Brandl8ec7f652007-08-15 14:28:01 +00001728
Georg Brandlb926ebb2009-09-17 17:14:04 +00001729 A dictionary mapping type names to type-checking functions. A type-checking
1730 function has the following signature::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001731
Georg Brandlb926ebb2009-09-17 17:14:04 +00001732 def check_mytype(option, opt, value)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001733
Georg Brandlb926ebb2009-09-17 17:14:04 +00001734 where ``option`` is an :class:`Option` instance, ``opt`` is an option string
1735 (e.g., ``"-f"``), and ``value`` is the string from the command line that must
1736 be checked and converted to your desired type. ``check_mytype()`` should
1737 return an object of the hypothetical type ``mytype``. The value returned by
1738 a type-checking function will wind up in the OptionValues instance returned
1739 by :meth:`OptionParser.parse_args`, or be passed to a callback as the
1740 ``value`` parameter.
1741
1742 Your type-checking function should raise :exc:`OptionValueError` if it
1743 encounters any problems. :exc:`OptionValueError` takes a single string
1744 argument, which is passed as-is to :class:`OptionParser`'s :meth:`error`
1745 method, which in turn prepends the program name and the string ``"error:"``
1746 and prints everything to stderr before terminating the process.
1747
1748Here's a silly example that demonstrates adding a ``"complex"`` option type to
Georg Brandl8ec7f652007-08-15 14:28:01 +00001749parse Python-style complex numbers on the command line. (This is even sillier
1750than it used to be, because :mod:`optparse` 1.3 added built-in support for
1751complex numbers, but never mind.)
1752
1753First, the necessary imports::
1754
1755 from copy import copy
1756 from optparse import Option, OptionValueError
1757
1758You need to define your type-checker first, since it's referred to later (in the
Georg Brandlb926ebb2009-09-17 17:14:04 +00001759:attr:`~Option.TYPE_CHECKER` class attribute of your Option subclass)::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001760
1761 def check_complex(option, opt, value):
1762 try:
1763 return complex(value)
1764 except ValueError:
1765 raise OptionValueError(
1766 "option %s: invalid complex value: %r" % (opt, value))
1767
1768Finally, the Option subclass::
1769
1770 class MyOption (Option):
1771 TYPES = Option.TYPES + ("complex",)
1772 TYPE_CHECKER = copy(Option.TYPE_CHECKER)
1773 TYPE_CHECKER["complex"] = check_complex
1774
1775(If we didn't make a :func:`copy` of :attr:`Option.TYPE_CHECKER`, we would end
Georg Brandlb926ebb2009-09-17 17:14:04 +00001776up modifying the :attr:`~Option.TYPE_CHECKER` attribute of :mod:`optparse`'s
1777Option class. This being Python, nothing stops you from doing that except good
1778manners and common sense.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001779
1780That's it! Now you can write a script that uses the new option type just like
1781any other :mod:`optparse`\ -based script, except you have to instruct your
1782OptionParser to use MyOption instead of Option::
1783
1784 parser = OptionParser(option_class=MyOption)
1785 parser.add_option("-c", type="complex")
1786
1787Alternately, you can build your own option list and pass it to OptionParser; if
1788you don't use :meth:`add_option` in the above way, you don't need to tell
1789OptionParser which option class to use::
1790
1791 option_list = [MyOption("-c", action="store", type="complex", dest="c")]
1792 parser = OptionParser(option_list=option_list)
1793
1794
1795.. _optparse-adding-new-actions:
1796
1797Adding new actions
1798^^^^^^^^^^^^^^^^^^
1799
1800Adding new actions is a bit trickier, because you have to understand that
1801:mod:`optparse` has a couple of classifications for actions:
1802
1803"store" actions
1804 actions that result in :mod:`optparse` storing a value to an attribute of the
Georg Brandlb926ebb2009-09-17 17:14:04 +00001805 current OptionValues instance; these options require a :attr:`~Option.dest`
1806 attribute to be supplied to the Option constructor.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001807
1808"typed" actions
Georg Brandlb926ebb2009-09-17 17:14:04 +00001809 actions that take a value from the command line and expect it to be of a
1810 certain type; or rather, a string that can be converted to a certain type.
1811 These options require a :attr:`~Option.type` attribute to the Option
1812 constructor.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001813
Georg Brandlb926ebb2009-09-17 17:14:04 +00001814These are overlapping sets: some default "store" actions are ``"store"``,
1815``"store_const"``, ``"append"``, and ``"count"``, while the default "typed"
1816actions are ``"store"``, ``"append"``, and ``"callback"``.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001817
1818When you add an action, you need to categorize it by listing it in at least one
1819of the following class attributes of Option (all are lists of strings):
1820
Georg Brandlb926ebb2009-09-17 17:14:04 +00001821.. attribute:: Option.ACTIONS
Georg Brandl8ec7f652007-08-15 14:28:01 +00001822
Georg Brandlb926ebb2009-09-17 17:14:04 +00001823 All actions must be listed in ACTIONS.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001824
Georg Brandlb926ebb2009-09-17 17:14:04 +00001825.. attribute:: Option.STORE_ACTIONS
Georg Brandl8ec7f652007-08-15 14:28:01 +00001826
Georg Brandlb926ebb2009-09-17 17:14:04 +00001827 "store" actions are additionally listed here.
1828
1829.. attribute:: Option.TYPED_ACTIONS
1830
1831 "typed" actions are additionally listed here.
1832
1833.. attribute:: Option.ALWAYS_TYPED_ACTIONS
1834
1835 Actions that always take a type (i.e. whose options always take a value) are
Georg Brandl8ec7f652007-08-15 14:28:01 +00001836 additionally listed here. The only effect of this is that :mod:`optparse`
Georg Brandlb926ebb2009-09-17 17:14:04 +00001837 assigns the default type, ``"string"``, to options with no explicit type
1838 whose action is listed in :attr:`ALWAYS_TYPED_ACTIONS`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001839
1840In order to actually implement your new action, you must override Option's
1841:meth:`take_action` method and add a case that recognizes your action.
1842
Georg Brandlb926ebb2009-09-17 17:14:04 +00001843For example, let's add an ``"extend"`` action. This is similar to the standard
1844``"append"`` action, but instead of taking a single value from the command-line
1845and appending it to an existing list, ``"extend"`` will take multiple values in
1846a single comma-delimited string, and extend an existing list with them. That
1847is, if ``"--names"`` is an ``"extend"`` option of type ``"string"``, the command
1848line ::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001849
1850 --names=foo,bar --names blah --names ding,dong
1851
1852would result in a list ::
1853
1854 ["foo", "bar", "blah", "ding", "dong"]
1855
1856Again we define a subclass of Option::
1857
1858 class MyOption (Option):
1859
1860 ACTIONS = Option.ACTIONS + ("extend",)
1861 STORE_ACTIONS = Option.STORE_ACTIONS + ("extend",)
1862 TYPED_ACTIONS = Option.TYPED_ACTIONS + ("extend",)
1863 ALWAYS_TYPED_ACTIONS = Option.ALWAYS_TYPED_ACTIONS + ("extend",)
1864
1865 def take_action(self, action, dest, opt, value, values, parser):
1866 if action == "extend":
1867 lvalue = value.split(",")
1868 values.ensure_value(dest, []).extend(lvalue)
1869 else:
1870 Option.take_action(
1871 self, action, dest, opt, value, values, parser)
1872
1873Features of note:
1874
Georg Brandlb926ebb2009-09-17 17:14:04 +00001875* ``"extend"`` both expects a value on the command-line and stores that value
1876 somewhere, so it goes in both :attr:`~Option.STORE_ACTIONS` and
1877 :attr:`~Option.TYPED_ACTIONS`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001878
Georg Brandlb926ebb2009-09-17 17:14:04 +00001879* to ensure that :mod:`optparse` assigns the default type of ``"string"`` to
1880 ``"extend"`` actions, we put the ``"extend"`` action in
1881 :attr:`~Option.ALWAYS_TYPED_ACTIONS` as well.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001882
1883* :meth:`MyOption.take_action` implements just this one new action, and passes
1884 control back to :meth:`Option.take_action` for the standard :mod:`optparse`
Georg Brandlb926ebb2009-09-17 17:14:04 +00001885 actions.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001886
Georg Brandlb926ebb2009-09-17 17:14:04 +00001887* ``values`` is an instance of the optparse_parser.Values class, which provides
1888 the very useful :meth:`ensure_value` method. :meth:`ensure_value` is
1889 essentially :func:`getattr` with a safety valve; it is called as ::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001890
1891 values.ensure_value(attr, value)
1892
1893 If the ``attr`` attribute of ``values`` doesn't exist or is None, then
Georg Brandlb926ebb2009-09-17 17:14:04 +00001894 ensure_value() first sets it to ``value``, and then returns 'value. This is
1895 very handy for actions like ``"extend"``, ``"append"``, and ``"count"``, all
1896 of which accumulate data in a variable and expect that variable to be of a
1897 certain type (a list for the first two, an integer for the latter). Using
Georg Brandl8ec7f652007-08-15 14:28:01 +00001898 :meth:`ensure_value` means that scripts using your action don't have to worry
Georg Brandlb926ebb2009-09-17 17:14:04 +00001899 about setting a default value for the option destinations in question; they
1900 can just leave the default as None and :meth:`ensure_value` will take care of
Georg Brandl8ec7f652007-08-15 14:28:01 +00001901 getting it right when it's needed.