Minor fix for currentframe (SF #1652788).
[python.git] / Doc / lib / libgetopt.tex
blobb38fcd8dff97f598b10051f9dc48e8e16913b670
1 \section{\module{getopt} ---
2 Parser for command line options}
4 \declaremodule{standard}{getopt}
5 \modulesynopsis{Portable parser for command line options; support both
6 short and long option names.}
9 This module helps scripts to parse the command line arguments in
10 \code{sys.argv}.
11 It supports the same conventions as the \UNIX{} \cfunction{getopt()}
12 function (including the special meanings of arguments of the form
13 `\code{-}' and `\code{-}\code{-}').
14 % That's to fool latex2html into leaving the two hyphens alone!
15 Long options similar to those supported by
16 GNU software may be used as well via an optional third argument.
17 This module provides a single function and an exception:
19 \begin{funcdesc}{getopt}{args, options\optional{, long_options}}
20 Parses command line options and parameter list. \var{args} is the
21 argument list to be parsed, without the leading reference to the
22 running program. Typically, this means \samp{sys.argv[1:]}.
23 \var{options} is the string of option letters that the script wants to
24 recognize, with options that require an argument followed by a colon
25 (\character{:}; i.e., the same format that \UNIX{}
26 \cfunction{getopt()} uses).
28 \note{Unlike GNU \cfunction{getopt()}, after a non-option
29 argument, all further arguments are considered also non-options.
30 This is similar to the way non-GNU \UNIX{} systems work.}
32 \var{long_options}, if specified, must be a list of strings with the
33 names of the long options which should be supported. The leading
34 \code{'-}\code{-'} characters should not be included in the option
35 name. Long options which require an argument should be followed by an
36 equal sign (\character{=}). To accept only long options,
37 \var{options} should be an empty string. Long options on the command
38 line can be recognized so long as they provide a prefix of the option
39 name that matches exactly one of the accepted options. For example,
40 if \var{long_options} is \code{['foo', 'frob']}, the option
41 \longprogramopt{fo} will match as \longprogramopt{foo}, but
42 \longprogramopt{f} will not match uniquely, so \exception{GetoptError}
43 will be raised.
45 The return value consists of two elements: the first is a list of
46 \code{(\var{option}, \var{value})} pairs; the second is the list of
47 program arguments left after the option list was stripped (this is a
48 trailing slice of \var{args}). Each option-and-value pair returned
49 has the option as its first element, prefixed with a hyphen for short
50 options (e.g., \code{'-x'}) or two hyphens for long options (e.g.,
51 \code{'-}\code{-long-option'}), and the option argument as its second
52 element, or an empty string if the option has no argument. The
53 options occur in the list in the same order in which they were found,
54 thus allowing multiple occurrences. Long and short options may be
55 mixed.
56 \end{funcdesc}
58 \begin{funcdesc}{gnu_getopt}{args, options\optional{, long_options}}
59 This function works like \function{getopt()}, except that GNU style
60 scanning mode is used by default. This means that option and
61 non-option arguments may be intermixed. The \function{getopt()}
62 function stops processing options as soon as a non-option argument is
63 encountered.
65 If the first character of the option string is `+', or if the
66 environment variable POSIXLY_CORRECT is set, then option processing
67 stops as soon as a non-option argument is encountered.
69 \versionadded{2.3}
70 \end{funcdesc}
72 \begin{excdesc}{GetoptError}
73 This is raised when an unrecognized option is found in the argument
74 list or when an option requiring an argument is given none.
75 The argument to the exception is a string indicating the cause of the
76 error. For long options, an argument given to an option which does
77 not require one will also cause this exception to be raised. The
78 attributes \member{msg} and \member{opt} give the error message and
79 related option; if there is no specific option to which the exception
80 relates, \member{opt} is an empty string.
82 \versionchanged[Introduced \exception{GetoptError} as a synonym for
83 \exception{error}]{1.6}
84 \end{excdesc}
86 \begin{excdesc}{error}
87 Alias for \exception{GetoptError}; for backward compatibility.
88 \end{excdesc}
91 An example using only \UNIX{} style options:
93 \begin{verbatim}
94 >>> import getopt
95 >>> args = '-a -b -cfoo -d bar a1 a2'.split()
96 >>> args
97 ['-a', '-b', '-cfoo', '-d', 'bar', 'a1', 'a2']
98 >>> optlist, args = getopt.getopt(args, 'abc:d:')
99 >>> optlist
100 [('-a', ''), ('-b', ''), ('-c', 'foo'), ('-d', 'bar')]
101 >>> args
102 ['a1', 'a2']
103 \end{verbatim}
105 Using long option names is equally easy:
107 \begin{verbatim}
108 >>> s = '--condition=foo --testing --output-file abc.def -x a1 a2'
109 >>> args = s.split()
110 >>> args
111 ['--condition=foo', '--testing', '--output-file', 'abc.def', '-x', 'a1', 'a2']
112 >>> optlist, args = getopt.getopt(args, 'x', [
113 ... 'condition=', 'output-file=', 'testing'])
114 >>> optlist
115 [('--condition', 'foo'), ('--testing', ''), ('--output-file', 'abc.def'), ('-x',
116 '')]
117 >>> args
118 ['a1', 'a2']
119 \end{verbatim}
121 In a script, typical usage is something like this:
123 \begin{verbatim}
124 import getopt, sys
126 def main():
127 try:
128 opts, args = getopt.getopt(sys.argv[1:], "ho:v", ["help", "output="])
129 except getopt.GetoptError, err:
130 # print help information and exit:
131 print str(err) # will print something like "option -a not recognized"
132 usage()
133 sys.exit(2)
134 output = None
135 verbose = False
136 for o, a in opts:
137 if o == "-v":
138 verbose = True
139 elif o in ("-h", "--help"):
140 usage()
141 sys.exit()
142 elif o in ("-o", "--output"):
143 output = a
144 else:
145 assert False, "unhandled option"
146 # ...
148 if __name__ == "__main__":
149 main()
150 \end{verbatim}
152 \begin{seealso}
153 \seemodule{optparse}{More object-oriented command line option parsing.}
154 \end{seealso}