Steven Bethard | 6d26569 | 2010-03-02 09:22:57 +0000 | [diff] [blame] | 1 | :mod:`getopt` --- C-style parser for command line options |
| 2 | ========================================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3 | |
| 4 | .. module:: getopt |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 5 | :synopsis: Portable parser for command line options; support both short and |
| 6 | long option names. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | |
Steven Bethard | 5971096 | 2010-05-24 03:21:08 +0000 | [diff] [blame] | 8 | .. note:: |
| 9 | The :mod:`getopt` module is a parser for command line options whose API is |
| 10 | designed to be familiar to users of the C :cfunc:`getopt` function. Users who |
| 11 | are unfamiliar with the C :cfunc:`getopt` function or who would like to write |
| 12 | less code and get better help and error messages should consider using the |
| 13 | :mod:`argparse` module instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 14 | |
| 15 | This module helps scripts to parse the command line arguments in ``sys.argv``. |
| 16 | It supports the same conventions as the Unix :cfunc:`getopt` function (including |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 17 | the special meanings of arguments of the form '``-``' and '``--``'). Long |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | options similar to those supported by GNU software may be used as well via an |
Benjamin Peterson | ae5360b | 2008-09-08 23:05:23 +0000 | [diff] [blame] | 19 | optional third argument. |
| 20 | |
| 21 | A more convenient, flexible, and powerful alternative is the |
| 22 | :mod:`optparse` module. |
| 23 | |
| 24 | This module provides two functions and an |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | exception: |
| 26 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 28 | .. function:: getopt(args, shortopts, longopts=[]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 29 | |
| 30 | Parses command line options and parameter list. *args* is the argument list to |
| 31 | be parsed, without the leading reference to the running program. Typically, this |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 32 | means ``sys.argv[1:]``. *shortopts* is the string of option letters that the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 33 | script wants to recognize, with options that require an argument followed by a |
| 34 | colon (``':'``; i.e., the same format that Unix :cfunc:`getopt` uses). |
| 35 | |
| 36 | .. note:: |
| 37 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 38 | Unlike GNU :cfunc:`getopt`, after a non-option argument, all further |
| 39 | arguments are considered also non-options. This is similar to the way |
| 40 | non-GNU Unix systems work. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 42 | *longopts*, if specified, must be a list of strings with the names of the |
Georg Brandl | 81ac1ce | 2007-08-31 17:17:17 +0000 | [diff] [blame] | 43 | long options which should be supported. The leading ``'--'`` characters |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 44 | should not be included in the option name. Long options which require an |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 45 | argument should be followed by an equal sign (``'='``). Optional arguments |
| 46 | are not supported. To accept only long options, *shortopts* should be an |
| 47 | empty string. Long options on the command line can be recognized so long as |
| 48 | they provide a prefix of the option name that matches exactly one of the |
| 49 | accepted options. For example, if *longopts* is ``['foo', 'frob']``, the |
| 50 | option :option:`--fo` will match as :option:`--foo`, but :option:`--f` will |
| 51 | not match uniquely, so :exc:`GetoptError` will be raised. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | |
| 53 | The return value consists of two elements: the first is a list of ``(option, |
| 54 | value)`` pairs; the second is the list of program arguments left after the |
| 55 | option list was stripped (this is a trailing slice of *args*). Each |
| 56 | option-and-value pair returned has the option as its first element, prefixed |
| 57 | with a hyphen for short options (e.g., ``'-x'``) or two hyphens for long |
Georg Brandl | 81ac1ce | 2007-08-31 17:17:17 +0000 | [diff] [blame] | 58 | options (e.g., ``'--long-option'``), and the option argument as its |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | second element, or an empty string if the option has no argument. The |
| 60 | options occur in the list in the same order in which they were found, thus |
| 61 | allowing multiple occurrences. Long and short options may be mixed. |
| 62 | |
| 63 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 64 | .. function:: gnu_getopt(args, shortopts, longopts=[]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 65 | |
| 66 | This function works like :func:`getopt`, except that GNU style scanning mode is |
| 67 | used by default. This means that option and non-option arguments may be |
| 68 | intermixed. The :func:`getopt` function stops processing options as soon as a |
| 69 | non-option argument is encountered. |
| 70 | |
| 71 | If the first character of the option string is '+', or if the environment |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 72 | variable :envvar:`POSIXLY_CORRECT` is set, then option processing stops as |
| 73 | soon as a non-option argument is encountered. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 74 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 | |
| 76 | .. exception:: GetoptError |
| 77 | |
| 78 | This is raised when an unrecognized option is found in the argument list or when |
| 79 | an option requiring an argument is given none. The argument to the exception is |
| 80 | a string indicating the cause of the error. For long options, an argument given |
| 81 | to an option which does not require one will also cause this exception to be |
| 82 | raised. The attributes :attr:`msg` and :attr:`opt` give the error message and |
| 83 | related option; if there is no specific option to which the exception relates, |
| 84 | :attr:`opt` is an empty string. |
| 85 | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 86 | .. XXX deprecated? |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 87 | .. exception:: error |
| 88 | |
| 89 | Alias for :exc:`GetoptError`; for backward compatibility. |
| 90 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 91 | An example using only Unix style options: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 92 | |
| 93 | >>> import getopt |
| 94 | >>> args = '-a -b -cfoo -d bar a1 a2'.split() |
| 95 | >>> args |
| 96 | ['-a', '-b', '-cfoo', '-d', 'bar', 'a1', 'a2'] |
| 97 | >>> optlist, args = getopt.getopt(args, 'abc:d:') |
| 98 | >>> optlist |
| 99 | [('-a', ''), ('-b', ''), ('-c', 'foo'), ('-d', 'bar')] |
| 100 | >>> args |
| 101 | ['a1', 'a2'] |
| 102 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 103 | Using long option names is equally easy: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 104 | |
| 105 | >>> s = '--condition=foo --testing --output-file abc.def -x a1 a2' |
| 106 | >>> args = s.split() |
| 107 | >>> args |
| 108 | ['--condition=foo', '--testing', '--output-file', 'abc.def', '-x', 'a1', 'a2'] |
| 109 | >>> optlist, args = getopt.getopt(args, 'x', [ |
| 110 | ... 'condition=', 'output-file=', 'testing']) |
| 111 | >>> optlist |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 112 | [('--condition', 'foo'), ('--testing', ''), ('--output-file', 'abc.def'), ('-x', '')] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 113 | >>> args |
| 114 | ['a1', 'a2'] |
| 115 | |
| 116 | In a script, typical usage is something like this:: |
| 117 | |
| 118 | import getopt, sys |
| 119 | |
| 120 | def main(): |
| 121 | try: |
| 122 | opts, args = getopt.getopt(sys.argv[1:], "ho:v", ["help", "output="]) |
| 123 | except getopt.GetoptError as err: |
| 124 | # print help information and exit: |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 125 | print(err) # will print something like "option -a not recognized" |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 126 | usage() |
| 127 | sys.exit(2) |
| 128 | output = None |
| 129 | verbose = False |
| 130 | for o, a in opts: |
| 131 | if o == "-v": |
| 132 | verbose = True |
| 133 | elif o in ("-h", "--help"): |
| 134 | usage() |
| 135 | sys.exit() |
| 136 | elif o in ("-o", "--output"): |
| 137 | output = a |
| 138 | else: |
| 139 | assert False, "unhandled option" |
| 140 | # ... |
| 141 | |
| 142 | if __name__ == "__main__": |
| 143 | main() |
| 144 | |
Steven Bethard | 5971096 | 2010-05-24 03:21:08 +0000 | [diff] [blame] | 145 | Note that an equivalent command line interface could be produced with less code |
| 146 | and more informative help and error messages by using the :mod:`argparse` module:: |
| 147 | |
| 148 | import argparse |
| 149 | |
| 150 | if __name__ == '__main__': |
| 151 | parser = argparse.ArgumentParser() |
| 152 | parser.add_argument('-o', '--output') |
| 153 | parser.add_argument('-v', dest='verbose', action='store_true') |
| 154 | args = parser.parse_args() |
| 155 | # ... do something with args.output ... |
| 156 | # ... do something with args.verbose .. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 | |
| 158 | .. seealso:: |
| 159 | |
Steven Bethard | 5971096 | 2010-05-24 03:21:08 +0000 | [diff] [blame] | 160 | Module :mod:`argparse` |
| 161 | Alternative command line option and argument parsing library. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 162 | |