blob: f969d7e98915ded22be70b95c9f672001fa26f52 [file] [log] [blame]
Steven Bethard6d265692010-03-02 09:22:57 +00001:mod:`getopt` --- C-style parser for command line options
2=========================================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
4.. module:: getopt
Georg Brandl036490d2009-05-17 13:00:36 +00005 :synopsis: Portable parser for command line options; support both short and
6 long option names.
Georg Brandl116aa622007-08-15 14:28:22 +00007
Steven Bethard59710962010-05-24 03:21:08 +00008.. 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 Brandl116aa622007-08-15 14:28:22 +000014
15This module helps scripts to parse the command line arguments in ``sys.argv``.
16It supports the same conventions as the Unix :cfunc:`getopt` function (including
Christian Heimes5b5e81c2007-12-31 16:14:33 +000017the special meanings of arguments of the form '``-``' and '``--``'). Long
Georg Brandl116aa622007-08-15 14:28:22 +000018options similar to those supported by GNU software may be used as well via an
Benjamin Petersonae5360b2008-09-08 23:05:23 +000019optional third argument.
20
21A more convenient, flexible, and powerful alternative is the
22:mod:`optparse` module.
23
24This module provides two functions and an
Georg Brandl116aa622007-08-15 14:28:22 +000025exception:
26
Georg Brandl116aa622007-08-15 14:28:22 +000027
Georg Brandl036490d2009-05-17 13:00:36 +000028.. function:: getopt(args, shortopts, longopts=[])
Georg Brandl116aa622007-08-15 14:28:22 +000029
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 Brandl036490d2009-05-17 13:00:36 +000032 means ``sys.argv[1:]``. *shortopts* is the string of option letters that the
Georg Brandl116aa622007-08-15 14:28:22 +000033 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 Brandl036490d2009-05-17 13:00:36 +000038 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 Brandl116aa622007-08-15 14:28:22 +000041
Georg Brandl036490d2009-05-17 13:00:36 +000042 *longopts*, if specified, must be a list of strings with the names of the
Georg Brandl81ac1ce2007-08-31 17:17:17 +000043 long options which should be supported. The leading ``'--'`` characters
Georg Brandl116aa622007-08-15 14:28:22 +000044 should not be included in the option name. Long options which require an
Georg Brandl495f7b52009-10-27 15:28:25 +000045 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 Brandl116aa622007-08-15 14:28:22 +000052
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 Brandl81ac1ce2007-08-31 17:17:17 +000058 options (e.g., ``'--long-option'``), and the option argument as its
Georg Brandl116aa622007-08-15 14:28:22 +000059 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 Brandl036490d2009-05-17 13:00:36 +000064.. function:: gnu_getopt(args, shortopts, longopts=[])
Georg Brandl116aa622007-08-15 14:28:22 +000065
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 Brandlaf265f42008-12-07 15:06:20 +000072 variable :envvar:`POSIXLY_CORRECT` is set, then option processing stops as
73 soon as a non-option argument is encountered.
Georg Brandl116aa622007-08-15 14:28:22 +000074
Georg Brandl116aa622007-08-15 14:28:22 +000075
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 Brandl55ac8f02007-09-01 13:51:09 +000086.. XXX deprecated?
Georg Brandl116aa622007-08-15 14:28:22 +000087.. exception:: error
88
89 Alias for :exc:`GetoptError`; for backward compatibility.
90
Christian Heimesfe337bf2008-03-23 21:54:12 +000091An example using only Unix style options:
Georg Brandl116aa622007-08-15 14:28:22 +000092
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 Heimesfe337bf2008-03-23 21:54:12 +0000103Using long option names is equally easy:
Georg Brandl116aa622007-08-15 14:28:22 +0000104
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 Heimesfe337bf2008-03-23 21:54:12 +0000112 [('--condition', 'foo'), ('--testing', ''), ('--output-file', 'abc.def'), ('-x', '')]
Georg Brandl116aa622007-08-15 14:28:22 +0000113 >>> args
114 ['a1', 'a2']
115
116In 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 Brandl6911e3c2007-09-04 07:15:32 +0000125 print(err) # will print something like "option -a not recognized"
Georg Brandl116aa622007-08-15 14:28:22 +0000126 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 Bethard59710962010-05-24 03:21:08 +0000145Note that an equivalent command line interface could be produced with less code
146and 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 Brandl116aa622007-08-15 14:28:22 +0000157
158.. seealso::
159
Steven Bethard59710962010-05-24 03:21:08 +0000160 Module :mod:`argparse`
161 Alternative command line option and argument parsing library.
Georg Brandl116aa622007-08-15 14:28:22 +0000162