blob: 58b2b5954c0e03d773c49d2b383c6b6f6a9fc1fb [file] [log] [blame]
Georg Brandl1d827ff2011-04-16 16:44:54 +02001:mod:`argparse` --- Parser for command-line options, arguments and sub-commands
Georg Brandle0bf91d2010-10-17 10:34:28 +00002===============================================================================
Benjamin Peterson698a18a2010-03-02 22:34:37 +00003
4.. module:: argparse
Éric Araujod9d7bca2011-08-10 04:19:03 +02005 :synopsis: Command-line option and argument parsing library.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00006.. moduleauthor:: Steven Bethard <steven.bethard@gmail.com>
Benjamin Peterson698a18a2010-03-02 22:34:37 +00007.. sectionauthor:: Steven Bethard <steven.bethard@gmail.com>
8
Raymond Hettingera1993682011-01-27 01:20:32 +00009.. versionadded:: 3.2
10
Éric Araujo19f9b712011-08-19 00:49:18 +020011**Source code:** :source:`Lib/argparse.py`
12
Raymond Hettingera1993682011-01-27 01:20:32 +000013--------------
Benjamin Peterson698a18a2010-03-02 22:34:37 +000014
Ezio Melotti2409d772011-04-16 23:13:50 +030015The :mod:`argparse` module makes it easy to write user-friendly command-line
Benjamin Peterson98047eb2010-03-03 02:07:08 +000016interfaces. The program defines what arguments it requires, and :mod:`argparse`
Benjamin Peterson698a18a2010-03-02 22:34:37 +000017will figure out how to parse those out of :data:`sys.argv`. The :mod:`argparse`
Benjamin Peterson98047eb2010-03-03 02:07:08 +000018module also automatically generates help and usage messages and issues errors
19when users give the program invalid arguments.
Benjamin Peterson698a18a2010-03-02 22:34:37 +000020
Georg Brandle0bf91d2010-10-17 10:34:28 +000021
Benjamin Peterson698a18a2010-03-02 22:34:37 +000022Example
23-------
24
Benjamin Peterson98047eb2010-03-03 02:07:08 +000025The following code is a Python program that takes a list of integers and
26produces either the sum or the max::
Benjamin Peterson698a18a2010-03-02 22:34:37 +000027
28 import argparse
29
30 parser = argparse.ArgumentParser(description='Process some integers.')
31 parser.add_argument('integers', metavar='N', type=int, nargs='+',
32 help='an integer for the accumulator')
33 parser.add_argument('--sum', dest='accumulate', action='store_const',
34 const=sum, default=max,
35 help='sum the integers (default: find the max)')
36
37 args = parser.parse_args()
Benjamin Petersonb2deb112010-03-03 02:09:18 +000038 print(args.accumulate(args.integers))
Benjamin Peterson698a18a2010-03-02 22:34:37 +000039
40Assuming the Python code above is saved into a file called ``prog.py``, it can
41be run at the command line and provides useful help messages::
42
43 $ prog.py -h
44 usage: prog.py [-h] [--sum] N [N ...]
45
46 Process some integers.
47
48 positional arguments:
49 N an integer for the accumulator
50
51 optional arguments:
52 -h, --help show this help message and exit
53 --sum sum the integers (default: find the max)
54
55When run with the appropriate arguments, it prints either the sum or the max of
56the command-line integers::
57
58 $ prog.py 1 2 3 4
59 4
60
61 $ prog.py 1 2 3 4 --sum
62 10
63
64If invalid arguments are passed in, it will issue an error::
65
66 $ prog.py a b c
67 usage: prog.py [-h] [--sum] N [N ...]
68 prog.py: error: argument N: invalid int value: 'a'
69
70The following sections walk you through this example.
71
Georg Brandle0bf91d2010-10-17 10:34:28 +000072
Benjamin Peterson698a18a2010-03-02 22:34:37 +000073Creating a parser
74^^^^^^^^^^^^^^^^^
75
Benjamin Peterson2614cda2010-03-21 22:36:19 +000076The first step in using the :mod:`argparse` is creating an
Benjamin Peterson98047eb2010-03-03 02:07:08 +000077:class:`ArgumentParser` object::
Benjamin Peterson698a18a2010-03-02 22:34:37 +000078
79 >>> parser = argparse.ArgumentParser(description='Process some integers.')
80
81The :class:`ArgumentParser` object will hold all the information necessary to
Ezio Melotticca4ef82011-04-21 15:26:46 +030082parse the command line into Python data types.
Benjamin Peterson698a18a2010-03-02 22:34:37 +000083
84
85Adding arguments
86^^^^^^^^^^^^^^^^
87
Benjamin Peterson98047eb2010-03-03 02:07:08 +000088Filling an :class:`ArgumentParser` with information about program arguments is
89done by making calls to the :meth:`~ArgumentParser.add_argument` method.
90Generally, these calls tell the :class:`ArgumentParser` how to take the strings
91on the command line and turn them into objects. This information is stored and
92used when :meth:`~ArgumentParser.parse_args` is called. For example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +000093
94 >>> parser.add_argument('integers', metavar='N', type=int, nargs='+',
95 ... help='an integer for the accumulator')
96 >>> parser.add_argument('--sum', dest='accumulate', action='store_const',
97 ... const=sum, default=max,
98 ... help='sum the integers (default: find the max)')
99
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300100Later, calling :meth:`~ArgumentParser.parse_args` will return an object with
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000101two attributes, ``integers`` and ``accumulate``. The ``integers`` attribute
102will be a list of one or more ints, and the ``accumulate`` attribute will be
103either the :func:`sum` function, if ``--sum`` was specified at the command line,
104or the :func:`max` function if it was not.
105
Georg Brandle0bf91d2010-10-17 10:34:28 +0000106
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000107Parsing arguments
108^^^^^^^^^^^^^^^^^
109
Éric Araujod9d7bca2011-08-10 04:19:03 +0200110:class:`ArgumentParser` parses arguments through the
Georg Brandl1d827ff2011-04-16 16:44:54 +0200111:meth:`~ArgumentParser.parse_args` method. This will inspect the command line,
Éric Araujofde92422011-08-19 01:30:26 +0200112convert each argument to the appropriate type and then invoke the appropriate action.
Éric Araujo63b18a42011-07-29 17:59:17 +0200113In most cases, this means a simple :class:`Namespace` object will be built up from
Georg Brandl1d827ff2011-04-16 16:44:54 +0200114attributes parsed out of the command line::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000115
116 >>> parser.parse_args(['--sum', '7', '-1', '42'])
117 Namespace(accumulate=<built-in function sum>, integers=[7, -1, 42])
118
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000119In a script, :meth:`~ArgumentParser.parse_args` will typically be called with no
120arguments, and the :class:`ArgumentParser` will automatically determine the
Éric Araujod9d7bca2011-08-10 04:19:03 +0200121command-line arguments from :data:`sys.argv`.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000122
123
124ArgumentParser objects
125----------------------
126
Georg Brandlc9007082011-01-09 09:04:08 +0000127.. class:: ArgumentParser([description], [epilog], [prog], [usage], [add_help], \
128 [argument_default], [parents], [prefix_chars], \
129 [conflict_handler], [formatter_class])
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000130
131 Create a new :class:`ArgumentParser` object. Each parameter has its own more
132 detailed description below, but in short they are:
133
134 * description_ - Text to display before the argument help.
135
136 * epilog_ - Text to display after the argument help.
137
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000138 * add_help_ - Add a -h/--help option to the parser. (default: ``True``)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000139
140 * argument_default_ - Set the global default value for arguments.
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000141 (default: ``None``)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000142
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000143 * parents_ - A list of :class:`ArgumentParser` objects whose arguments should
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000144 also be included.
145
146 * prefix_chars_ - The set of characters that prefix optional arguments.
147 (default: '-')
148
149 * fromfile_prefix_chars_ - The set of characters that prefix files from
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000150 which additional arguments should be read. (default: ``None``)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000151
152 * formatter_class_ - A class for customizing the help output.
153
154 * conflict_handler_ - Usually unnecessary, defines strategy for resolving
155 conflicting optionals.
156
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000157 * prog_ - The name of the program (default:
Éric Araujo37b5f9e2011-09-01 03:19:30 +0200158 ``sys.argv[0]``)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000159
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000160 * usage_ - The string describing the program usage (default: generated)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000161
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000162The following sections describe how each of these are used.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000163
164
165description
166^^^^^^^^^^^
167
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000168Most calls to the :class:`ArgumentParser` constructor will use the
169``description=`` keyword argument. This argument gives a brief description of
170what the program does and how it works. In help messages, the description is
171displayed between the command-line usage string and the help messages for the
172various arguments::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000173
174 >>> parser = argparse.ArgumentParser(description='A foo that bars')
175 >>> parser.print_help()
176 usage: argparse.py [-h]
177
178 A foo that bars
179
180 optional arguments:
181 -h, --help show this help message and exit
182
183By default, the description will be line-wrapped so that it fits within the
184given space. To change this behavior, see the formatter_class_ argument.
185
186
187epilog
188^^^^^^
189
190Some programs like to display additional description of the program after the
191description of the arguments. Such text can be specified using the ``epilog=``
192argument to :class:`ArgumentParser`::
193
194 >>> parser = argparse.ArgumentParser(
195 ... description='A foo that bars',
196 ... epilog="And that's how you'd foo a bar")
197 >>> parser.print_help()
198 usage: argparse.py [-h]
199
200 A foo that bars
201
202 optional arguments:
203 -h, --help show this help message and exit
204
205 And that's how you'd foo a bar
206
207As with the description_ argument, the ``epilog=`` text is by default
208line-wrapped, but this behavior can be adjusted with the formatter_class_
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000209argument to :class:`ArgumentParser`.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000210
211
212add_help
213^^^^^^^^
214
R. David Murray88c49fe2010-08-03 17:56:09 +0000215By default, ArgumentParser objects add an option which simply displays
216the parser's help message. For example, consider a file named
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000217``myprogram.py`` containing the following code::
218
219 import argparse
220 parser = argparse.ArgumentParser()
221 parser.add_argument('--foo', help='foo help')
222 args = parser.parse_args()
223
Georg Brandl1d827ff2011-04-16 16:44:54 +0200224If ``-h`` or ``--help`` is supplied at the command line, the ArgumentParser
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000225help will be printed::
226
227 $ python myprogram.py --help
228 usage: myprogram.py [-h] [--foo FOO]
229
230 optional arguments:
231 -h, --help show this help message and exit
232 --foo FOO foo help
233
234Occasionally, it may be useful to disable the addition of this help option.
235This can be achieved by passing ``False`` as the ``add_help=`` argument to
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000236:class:`ArgumentParser`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000237
238 >>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)
239 >>> parser.add_argument('--foo', help='foo help')
240 >>> parser.print_help()
241 usage: PROG [--foo FOO]
242
243 optional arguments:
244 --foo FOO foo help
245
R. David Murray88c49fe2010-08-03 17:56:09 +0000246The help option is typically ``-h/--help``. The exception to this is
Éric Araujo543edbd2011-08-19 01:45:12 +0200247if the ``prefix_chars=`` is specified and does not include ``-``, in
R. David Murray88c49fe2010-08-03 17:56:09 +0000248which case ``-h`` and ``--help`` are not valid options. In
249this case, the first character in ``prefix_chars`` is used to prefix
250the help options::
251
252 >>> parser = argparse.ArgumentParser(prog='PROG', prefix_chars='+/')
253 >>> parser.print_help()
254 usage: PROG [+h]
255
256 optional arguments:
257 +h, ++help show this help message and exit
258
259
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000260prefix_chars
261^^^^^^^^^^^^
262
Éric Araujo543edbd2011-08-19 01:45:12 +0200263Most command-line options will use ``-`` as the prefix, e.g. ``-f/--foo``.
R. David Murray88c49fe2010-08-03 17:56:09 +0000264Parsers that need to support different or additional prefix
265characters, e.g. for options
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000266like ``+f`` or ``/foo``, may specify them using the ``prefix_chars=`` argument
267to the ArgumentParser constructor::
268
269 >>> parser = argparse.ArgumentParser(prog='PROG', prefix_chars='-+')
270 >>> parser.add_argument('+f')
271 >>> parser.add_argument('++bar')
272 >>> parser.parse_args('+f X ++bar Y'.split())
273 Namespace(bar='Y', f='X')
274
275The ``prefix_chars=`` argument defaults to ``'-'``. Supplying a set of
Éric Araujo543edbd2011-08-19 01:45:12 +0200276characters that does not include ``-`` will cause ``-f/--foo`` options to be
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000277disallowed.
278
279
280fromfile_prefix_chars
281^^^^^^^^^^^^^^^^^^^^^
282
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000283Sometimes, for example when dealing with a particularly long argument lists, it
284may make sense to keep the list of arguments in a file rather than typing it out
285at the command line. If the ``fromfile_prefix_chars=`` argument is given to the
286:class:`ArgumentParser` constructor, then arguments that start with any of the
287specified characters will be treated as files, and will be replaced by the
288arguments they contain. For example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000289
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000290 >>> with open('args.txt', 'w') as fp:
291 ... fp.write('-f\nbar')
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000292 >>> parser = argparse.ArgumentParser(fromfile_prefix_chars='@')
293 >>> parser.add_argument('-f')
294 >>> parser.parse_args(['-f', 'foo', '@args.txt'])
295 Namespace(f='bar')
296
297Arguments read from a file must by default be one per line (but see also
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300298:meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if they
299were in the same place as the original file referencing argument on the command
300line. So in the example above, the expression ``['-f', 'foo', '@args.txt']``
301is considered equivalent to the expression ``['-f', 'foo', '-f', 'bar']``.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000302
303The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that
304arguments will never be treated as file references.
305
Georg Brandle0bf91d2010-10-17 10:34:28 +0000306
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000307argument_default
308^^^^^^^^^^^^^^^^
309
310Generally, argument defaults are specified either by passing a default to
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300311:meth:`~ArgumentParser.add_argument` or by calling the
312:meth:`~ArgumentParser.set_defaults` methods with a specific set of name-value
313pairs. Sometimes however, it may be useful to specify a single parser-wide
314default for arguments. This can be accomplished by passing the
315``argument_default=`` keyword argument to :class:`ArgumentParser`. For example,
316to globally suppress attribute creation on :meth:`~ArgumentParser.parse_args`
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000317calls, we supply ``argument_default=SUPPRESS``::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000318
319 >>> parser = argparse.ArgumentParser(argument_default=argparse.SUPPRESS)
320 >>> parser.add_argument('--foo')
321 >>> parser.add_argument('bar', nargs='?')
322 >>> parser.parse_args(['--foo', '1', 'BAR'])
323 Namespace(bar='BAR', foo='1')
324 >>> parser.parse_args([])
325 Namespace()
326
327
328parents
329^^^^^^^
330
331Sometimes, several parsers share a common set of arguments. Rather than
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000332repeating the definitions of these arguments, a single parser with all the
333shared arguments and passed to ``parents=`` argument to :class:`ArgumentParser`
334can be used. The ``parents=`` argument takes a list of :class:`ArgumentParser`
335objects, collects all the positional and optional actions from them, and adds
336these actions to the :class:`ArgumentParser` object being constructed::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000337
338 >>> parent_parser = argparse.ArgumentParser(add_help=False)
339 >>> parent_parser.add_argument('--parent', type=int)
340
341 >>> foo_parser = argparse.ArgumentParser(parents=[parent_parser])
342 >>> foo_parser.add_argument('foo')
343 >>> foo_parser.parse_args(['--parent', '2', 'XXX'])
344 Namespace(foo='XXX', parent=2)
345
346 >>> bar_parser = argparse.ArgumentParser(parents=[parent_parser])
347 >>> bar_parser.add_argument('--bar')
348 >>> bar_parser.parse_args(['--bar', 'YYY'])
349 Namespace(bar='YYY', parent=None)
350
351Note that most parent parsers will specify ``add_help=False``. Otherwise, the
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000352:class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent
353and one in the child) and raise an error.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000354
Steven Bethardd186f992011-03-26 21:49:00 +0100355.. note::
356 You must fully initialize the parsers before passing them via ``parents=``.
357 If you change the parent parsers after the child parser, those changes will
358 not be reflected in the child.
359
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000360
361formatter_class
362^^^^^^^^^^^^^^^
363
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000364:class:`ArgumentParser` objects allow the help formatting to be customized by
365specifying an alternate formatting class. Currently, there are three such
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300366classes:
367
368.. class:: RawDescriptionHelpFormatter
369 RawTextHelpFormatter
370 ArgumentDefaultsHelpFormatter
371
372The first two allow more control over how textual descriptions are displayed,
373while the last automatically adds information about argument default values.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000374
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000375By default, :class:`ArgumentParser` objects line-wrap the description_ and
376epilog_ texts in command-line help messages::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000377
378 >>> parser = argparse.ArgumentParser(
379 ... prog='PROG',
380 ... description='''this description
381 ... was indented weird
382 ... but that is okay''',
383 ... epilog='''
384 ... likewise for this epilog whose whitespace will
385 ... be cleaned up and whose words will be wrapped
386 ... across a couple lines''')
387 >>> parser.print_help()
388 usage: PROG [-h]
389
390 this description was indented weird but that is okay
391
392 optional arguments:
393 -h, --help show this help message and exit
394
395 likewise for this epilog whose whitespace will be cleaned up and whose words
396 will be wrapped across a couple lines
397
Éric Araujo543edbd2011-08-19 01:45:12 +0200398Passing :class:`RawDescriptionHelpFormatter` as ``formatter_class=``
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000399indicates that description_ and epilog_ are already correctly formatted and
400should not be line-wrapped::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000401
402 >>> parser = argparse.ArgumentParser(
403 ... prog='PROG',
404 ... formatter_class=argparse.RawDescriptionHelpFormatter,
405 ... description=textwrap.dedent('''\
406 ... Please do not mess up this text!
407 ... --------------------------------
408 ... I have indented it
409 ... exactly the way
410 ... I want it
411 ... '''))
412 >>> parser.print_help()
413 usage: PROG [-h]
414
415 Please do not mess up this text!
416 --------------------------------
417 I have indented it
418 exactly the way
419 I want it
420
421 optional arguments:
422 -h, --help show this help message and exit
423
Éric Araujo543edbd2011-08-19 01:45:12 +0200424:class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text,
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000425including argument descriptions.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000426
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000427The other formatter class available, :class:`ArgumentDefaultsHelpFormatter`,
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000428will add information about the default value of each of the arguments::
429
430 >>> parser = argparse.ArgumentParser(
431 ... prog='PROG',
432 ... formatter_class=argparse.ArgumentDefaultsHelpFormatter)
433 >>> parser.add_argument('--foo', type=int, default=42, help='FOO!')
434 >>> parser.add_argument('bar', nargs='*', default=[1, 2, 3], help='BAR!')
435 >>> parser.print_help()
436 usage: PROG [-h] [--foo FOO] [bar [bar ...]]
437
438 positional arguments:
439 bar BAR! (default: [1, 2, 3])
440
441 optional arguments:
442 -h, --help show this help message and exit
443 --foo FOO FOO! (default: 42)
444
445
446conflict_handler
447^^^^^^^^^^^^^^^^
448
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000449:class:`ArgumentParser` objects do not allow two actions with the same option
450string. By default, :class:`ArgumentParser` objects raises an exception if an
451attempt is made to create an argument with an option string that is already in
452use::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000453
454 >>> parser = argparse.ArgumentParser(prog='PROG')
455 >>> parser.add_argument('-f', '--foo', help='old foo help')
456 >>> parser.add_argument('--foo', help='new foo help')
457 Traceback (most recent call last):
458 ..
459 ArgumentError: argument --foo: conflicting option string(s): --foo
460
461Sometimes (e.g. when using parents_) it may be useful to simply override any
462older arguments with the same option string. To get this behavior, the value
463``'resolve'`` can be supplied to the ``conflict_handler=`` argument of
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000464:class:`ArgumentParser`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000465
466 >>> parser = argparse.ArgumentParser(prog='PROG', conflict_handler='resolve')
467 >>> parser.add_argument('-f', '--foo', help='old foo help')
468 >>> parser.add_argument('--foo', help='new foo help')
469 >>> parser.print_help()
470 usage: PROG [-h] [-f FOO] [--foo FOO]
471
472 optional arguments:
473 -h, --help show this help message and exit
474 -f FOO old foo help
475 --foo FOO new foo help
476
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000477Note that :class:`ArgumentParser` objects only remove an action if all of its
478option strings are overridden. So, in the example above, the old ``-f/--foo``
479action is retained as the ``-f`` action, because only the ``--foo`` option
480string was overridden.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000481
482
483prog
484^^^^
485
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000486By default, :class:`ArgumentParser` objects uses ``sys.argv[0]`` to determine
487how to display the name of the program in help messages. This default is almost
Ezio Melottif82340d2010-05-27 22:38:16 +0000488always desirable because it will make the help messages match how the program was
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000489invoked on the command line. For example, consider a file named
490``myprogram.py`` with the following code::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000491
492 import argparse
493 parser = argparse.ArgumentParser()
494 parser.add_argument('--foo', help='foo help')
495 args = parser.parse_args()
496
497The help for this program will display ``myprogram.py`` as the program name
498(regardless of where the program was invoked from)::
499
500 $ python myprogram.py --help
501 usage: myprogram.py [-h] [--foo FOO]
502
503 optional arguments:
504 -h, --help show this help message and exit
505 --foo FOO foo help
506 $ cd ..
507 $ python subdir\myprogram.py --help
508 usage: myprogram.py [-h] [--foo FOO]
509
510 optional arguments:
511 -h, --help show this help message and exit
512 --foo FOO foo help
513
514To change this default behavior, another value can be supplied using the
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000515``prog=`` argument to :class:`ArgumentParser`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000516
517 >>> parser = argparse.ArgumentParser(prog='myprogram')
518 >>> parser.print_help()
519 usage: myprogram [-h]
520
521 optional arguments:
522 -h, --help show this help message and exit
523
524Note that the program name, whether determined from ``sys.argv[0]`` or from the
525``prog=`` argument, is available to help messages using the ``%(prog)s`` format
526specifier.
527
528::
529
530 >>> parser = argparse.ArgumentParser(prog='myprogram')
531 >>> parser.add_argument('--foo', help='foo of the %(prog)s program')
532 >>> parser.print_help()
533 usage: myprogram [-h] [--foo FOO]
534
535 optional arguments:
536 -h, --help show this help message and exit
537 --foo FOO foo of the myprogram program
538
539
540usage
541^^^^^
542
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000543By default, :class:`ArgumentParser` calculates the usage message from the
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000544arguments it contains::
545
546 >>> parser = argparse.ArgumentParser(prog='PROG')
547 >>> parser.add_argument('--foo', nargs='?', help='foo help')
548 >>> parser.add_argument('bar', nargs='+', help='bar help')
549 >>> parser.print_help()
550 usage: PROG [-h] [--foo [FOO]] bar [bar ...]
551
552 positional arguments:
553 bar bar help
554
555 optional arguments:
556 -h, --help show this help message and exit
557 --foo [FOO] foo help
558
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000559The default message can be overridden with the ``usage=`` keyword argument::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000560
561 >>> parser = argparse.ArgumentParser(prog='PROG', usage='%(prog)s [options]')
562 >>> parser.add_argument('--foo', nargs='?', help='foo help')
563 >>> parser.add_argument('bar', nargs='+', help='bar help')
564 >>> parser.print_help()
565 usage: PROG [options]
566
567 positional arguments:
568 bar bar help
569
570 optional arguments:
571 -h, --help show this help message and exit
572 --foo [FOO] foo help
573
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000574The ``%(prog)s`` format specifier is available to fill in the program name in
575your usage messages.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000576
577
578The add_argument() method
579-------------------------
580
Georg Brandlc9007082011-01-09 09:04:08 +0000581.. method:: ArgumentParser.add_argument(name or flags..., [action], [nargs], \
582 [const], [default], [type], [choices], [required], \
583 [help], [metavar], [dest])
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000584
Georg Brandl1d827ff2011-04-16 16:44:54 +0200585 Define how a single command-line argument should be parsed. Each parameter
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000586 has its own more detailed description below, but in short they are:
587
588 * `name or flags`_ - Either a name or a list of option strings, e.g. ``foo``
Ezio Melottidca309d2011-04-21 23:09:27 +0300589 or ``-f, --foo``.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000590
591 * action_ - The basic type of action to be taken when this argument is
Georg Brandl1d827ff2011-04-16 16:44:54 +0200592 encountered at the command line.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000593
594 * nargs_ - The number of command-line arguments that should be consumed.
595
596 * const_ - A constant value required by some action_ and nargs_ selections.
597
598 * default_ - The value produced if the argument is absent from the
Georg Brandl1d827ff2011-04-16 16:44:54 +0200599 command line.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000600
Ezio Melotti2409d772011-04-16 23:13:50 +0300601 * type_ - The type to which the command-line argument should be converted.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000602
603 * choices_ - A container of the allowable values for the argument.
604
605 * required_ - Whether or not the command-line option may be omitted
606 (optionals only).
607
608 * help_ - A brief description of what the argument does.
609
610 * metavar_ - A name for the argument in usage messages.
611
612 * dest_ - The name of the attribute to be added to the object returned by
613 :meth:`parse_args`.
614
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000615The following sections describe how each of these are used.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000616
Georg Brandle0bf91d2010-10-17 10:34:28 +0000617
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000618name or flags
619^^^^^^^^^^^^^
620
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300621The :meth:`~ArgumentParser.add_argument` method must know whether an optional
622argument, like ``-f`` or ``--foo``, or a positional argument, like a list of
623filenames, is expected. The first arguments passed to
624:meth:`~ArgumentParser.add_argument` must therefore be either a series of
625flags, or a simple argument name. For example, an optional argument could
626be created like::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000627
628 >>> parser.add_argument('-f', '--foo')
629
630while a positional argument could be created like::
631
632 >>> parser.add_argument('bar')
633
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300634When :meth:`~ArgumentParser.parse_args` is called, optional arguments will be
635identified by the ``-`` prefix, and the remaining arguments will be assumed to
636be positional::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000637
638 >>> parser = argparse.ArgumentParser(prog='PROG')
639 >>> parser.add_argument('-f', '--foo')
640 >>> parser.add_argument('bar')
641 >>> parser.parse_args(['BAR'])
642 Namespace(bar='BAR', foo=None)
643 >>> parser.parse_args(['BAR', '--foo', 'FOO'])
644 Namespace(bar='BAR', foo='FOO')
645 >>> parser.parse_args(['--foo', 'FOO'])
646 usage: PROG [-h] [-f FOO] bar
647 PROG: error: too few arguments
648
Georg Brandle0bf91d2010-10-17 10:34:28 +0000649
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000650action
651^^^^^^
652
Éric Araujod9d7bca2011-08-10 04:19:03 +0200653:class:`ArgumentParser` objects associate command-line arguments with actions. These
654actions can do just about anything with the command-line arguments associated with
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000655them, though most actions simply add an attribute to the object returned by
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300656:meth:`~ArgumentParser.parse_args`. The ``action`` keyword argument specifies
Éric Araujod9d7bca2011-08-10 04:19:03 +0200657how the command-line arguments should be handled. The supported actions are:
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000658
659* ``'store'`` - This just stores the argument's value. This is the default
Ezio Melotti2f1db7d2011-04-21 23:06:48 +0300660 action. For example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000661
662 >>> parser = argparse.ArgumentParser()
663 >>> parser.add_argument('--foo')
664 >>> parser.parse_args('--foo 1'.split())
665 Namespace(foo='1')
666
667* ``'store_const'`` - This stores the value specified by the const_ keyword
Ezio Melotti2f1db7d2011-04-21 23:06:48 +0300668 argument. (Note that the const_ keyword argument defaults to the rather
669 unhelpful ``None``.) The ``'store_const'`` action is most commonly used with
670 optional arguments that specify some sort of flag. For example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000671
672 >>> parser = argparse.ArgumentParser()
673 >>> parser.add_argument('--foo', action='store_const', const=42)
674 >>> parser.parse_args('--foo'.split())
675 Namespace(foo=42)
676
677* ``'store_true'`` and ``'store_false'`` - These store the values ``True`` and
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000678 ``False`` respectively. These are special cases of ``'store_const'``. For
679 example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000680
681 >>> parser = argparse.ArgumentParser()
682 >>> parser.add_argument('--foo', action='store_true')
683 >>> parser.add_argument('--bar', action='store_false')
684 >>> parser.parse_args('--foo --bar'.split())
685 Namespace(bar=False, foo=True)
686
687* ``'append'`` - This stores a list, and appends each argument value to the
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000688 list. This is useful to allow an option to be specified multiple times.
689 Example usage::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000690
691 >>> parser = argparse.ArgumentParser()
692 >>> parser.add_argument('--foo', action='append')
693 >>> parser.parse_args('--foo 1 --foo 2'.split())
694 Namespace(foo=['1', '2'])
695
696* ``'append_const'`` - This stores a list, and appends the value specified by
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000697 the const_ keyword argument to the list. (Note that the const_ keyword
698 argument defaults to ``None``.) The ``'append_const'`` action is typically
699 useful when multiple arguments need to store constants to the same list. For
700 example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000701
702 >>> parser = argparse.ArgumentParser()
703 >>> parser.add_argument('--str', dest='types', action='append_const', const=str)
704 >>> parser.add_argument('--int', dest='types', action='append_const', const=int)
705 >>> parser.parse_args('--str --int'.split())
Florent Xicluna74e64952011-10-28 11:21:19 +0200706 Namespace(types=[<class 'str'>, <class 'int'>])
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000707
Sandro Tosi98492a52012-01-04 23:25:04 +0100708* ``'count'`` - This counts the number of times a keyword argument occurs. For
709 example, this is useful for increasing verbosity levels::
710
711 >>> parser = argparse.ArgumentParser()
712 >>> parser.add_argument('--verbose', '-v', action='count')
713 >>> parser.parse_args('-vvv'.split())
714 Namespace(verbose=3)
715
716* ``'help'`` - This prints a complete help message for all the options in the
717 current parser and then exits. By default a help action is automatically
718 added to the parser. See :class:`ArgumentParser` for details of how the
719 output is created.
720
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000721* ``'version'`` - This expects a ``version=`` keyword argument in the
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300722 :meth:`~ArgumentParser.add_argument` call, and prints version information
723 and exits when invoked.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000724
725 >>> import argparse
726 >>> parser = argparse.ArgumentParser(prog='PROG')
Steven Bethard59710962010-05-24 03:21:08 +0000727 >>> parser.add_argument('--version', action='version', version='%(prog)s 2.0')
728 >>> parser.parse_args(['--version'])
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000729 PROG 2.0
730
731You can also specify an arbitrary action by passing an object that implements
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000732the Action API. The easiest way to do this is to extend
733:class:`argparse.Action`, supplying an appropriate ``__call__`` method. The
734``__call__`` method should accept four parameters:
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000735
736* ``parser`` - The ArgumentParser object which contains this action.
737
Éric Araujo63b18a42011-07-29 17:59:17 +0200738* ``namespace`` - The :class:`Namespace` object that will be returned by
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300739 :meth:`~ArgumentParser.parse_args`. Most actions add an attribute to this
740 object.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000741
Éric Araujod9d7bca2011-08-10 04:19:03 +0200742* ``values`` - The associated command-line arguments, with any type conversions
743 applied. (Type conversions are specified with the type_ keyword argument to
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300744 :meth:`~ArgumentParser.add_argument`.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000745
746* ``option_string`` - The option string that was used to invoke this action.
747 The ``option_string`` argument is optional, and will be absent if the action
748 is associated with a positional argument.
749
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000750An example of a custom action::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000751
752 >>> class FooAction(argparse.Action):
753 ... def __call__(self, parser, namespace, values, option_string=None):
Georg Brandl571a9532010-07-26 17:00:20 +0000754 ... print('%r %r %r' % (namespace, values, option_string))
755 ... setattr(namespace, self.dest, values)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000756 ...
757 >>> parser = argparse.ArgumentParser()
758 >>> parser.add_argument('--foo', action=FooAction)
759 >>> parser.add_argument('bar', action=FooAction)
760 >>> args = parser.parse_args('1 --foo 2'.split())
761 Namespace(bar=None, foo=None) '1' None
762 Namespace(bar='1', foo=None) '2' '--foo'
763 >>> args
764 Namespace(bar='1', foo='2')
765
766
767nargs
768^^^^^
769
770ArgumentParser objects usually associate a single command-line argument with a
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000771single action to be taken. The ``nargs`` keyword argument associates a
Ezio Melotti00f53af2011-04-21 22:56:51 +0300772different number of command-line arguments with a single action. The supported
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000773values are:
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000774
Éric Araujo543edbd2011-08-19 01:45:12 +0200775* ``N`` (an integer). ``N`` arguments from the command line will be gathered together into a
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000776 list. For example::
777
Georg Brandl682d7e02010-10-06 10:26:05 +0000778 >>> parser = argparse.ArgumentParser()
779 >>> parser.add_argument('--foo', nargs=2)
780 >>> parser.add_argument('bar', nargs=1)
781 >>> parser.parse_args('c --foo a b'.split())
782 Namespace(bar=['c'], foo=['a', 'b'])
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000783
Georg Brandl682d7e02010-10-06 10:26:05 +0000784 Note that ``nargs=1`` produces a list of one item. This is different from
785 the default, in which the item is produced by itself.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000786
Éric Araujofde92422011-08-19 01:30:26 +0200787* ``'?'``. One argument will be consumed from the command line if possible, and
788 produced as a single item. If no command-line argument is present, the value from
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000789 default_ will be produced. Note that for optional arguments, there is an
790 additional case - the option string is present but not followed by a
Éric Araujofde92422011-08-19 01:30:26 +0200791 command-line argument. In this case the value from const_ will be produced. Some
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000792 examples to illustrate this::
793
794 >>> parser = argparse.ArgumentParser()
795 >>> parser.add_argument('--foo', nargs='?', const='c', default='d')
796 >>> parser.add_argument('bar', nargs='?', default='d')
797 >>> parser.parse_args('XX --foo YY'.split())
798 Namespace(bar='XX', foo='YY')
799 >>> parser.parse_args('XX --foo'.split())
800 Namespace(bar='XX', foo='c')
801 >>> parser.parse_args(''.split())
802 Namespace(bar='d', foo='d')
803
804 One of the more common uses of ``nargs='?'`` is to allow optional input and
805 output files::
806
807 >>> parser = argparse.ArgumentParser()
Georg Brandle0bf91d2010-10-17 10:34:28 +0000808 >>> parser.add_argument('infile', nargs='?', type=argparse.FileType('r'),
809 ... default=sys.stdin)
810 >>> parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'),
811 ... default=sys.stdout)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000812 >>> parser.parse_args(['input.txt', 'output.txt'])
Georg Brandl04536b02011-01-09 09:31:01 +0000813 Namespace(infile=<_io.TextIOWrapper name='input.txt' encoding='UTF-8'>,
814 outfile=<_io.TextIOWrapper name='output.txt' encoding='UTF-8'>)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000815 >>> parser.parse_args([])
Georg Brandl04536b02011-01-09 09:31:01 +0000816 Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>,
817 outfile=<_io.TextIOWrapper name='<stdout>' encoding='UTF-8'>)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000818
Éric Araujod9d7bca2011-08-10 04:19:03 +0200819* ``'*'``. All command-line arguments present are gathered into a list. Note that
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000820 it generally doesn't make much sense to have more than one positional argument
821 with ``nargs='*'``, but multiple optional arguments with ``nargs='*'`` is
822 possible. For example::
823
824 >>> parser = argparse.ArgumentParser()
825 >>> parser.add_argument('--foo', nargs='*')
826 >>> parser.add_argument('--bar', nargs='*')
827 >>> parser.add_argument('baz', nargs='*')
828 >>> parser.parse_args('a b --foo x y --bar 1 2'.split())
829 Namespace(bar=['1', '2'], baz=['a', 'b'], foo=['x', 'y'])
830
831* ``'+'``. Just like ``'*'``, all command-line args present are gathered into a
832 list. Additionally, an error message will be generated if there wasn't at
Éric Araujofde92422011-08-19 01:30:26 +0200833 least one command-line argument present. For example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000834
835 >>> parser = argparse.ArgumentParser(prog='PROG')
836 >>> parser.add_argument('foo', nargs='+')
837 >>> parser.parse_args('a b'.split())
838 Namespace(foo=['a', 'b'])
839 >>> parser.parse_args(''.split())
840 usage: PROG [-h] foo [foo ...]
841 PROG: error: too few arguments
842
Sandro Tosida8e11a2012-01-19 22:23:00 +0100843* ``argparse.REMAINDER``. All the remaining command-line arguments are gathered
844 into a list. This is commonly useful for command line utilities that dispatch
845 to other command line utilities.
Sandro Tosi16bd0b42012-01-19 21:59:55 +0100846
847 >>> parser = argparse.ArgumentParser(prog='PROG')
848 >>> parser.add_argument('--foo')
849 >>> parser.add_argument('command')
850 >>> parser.add_argument('args', nargs=argparse.REMAINDER)
Sandro Tosi04676862012-02-19 19:54:00 +0100851 >>> print(parser.parse_args('--foo B cmd --arg1 XX ZZ'.split()))
Sandro Tosida8e11a2012-01-19 22:23:00 +0100852 Namespace(args=['--arg1', 'XX', 'ZZ'], command='cmd', foo='B')
Sandro Tosi16bd0b42012-01-19 21:59:55 +0100853
Éric Araujod9d7bca2011-08-10 04:19:03 +0200854If the ``nargs`` keyword argument is not provided, the number of arguments consumed
Éric Araujofde92422011-08-19 01:30:26 +0200855is determined by the action_. Generally this means a single command-line argument
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000856will be consumed and a single item (not a list) will be produced.
857
858
859const
860^^^^^
861
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300862The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to hold
863constant values that are not read from the command line but are required for
864the various :class:`ArgumentParser` actions. The two most common uses of it are:
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000865
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300866* When :meth:`~ArgumentParser.add_argument` is called with
867 ``action='store_const'`` or ``action='append_const'``. These actions add the
868 ``const`` value to one of the attributes of the object returned by :meth:`~ArgumentParser.parse_args`. See the action_ description for examples.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000869
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300870* When :meth:`~ArgumentParser.add_argument` is called with option strings
871 (like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional
Éric Araujod9d7bca2011-08-10 04:19:03 +0200872 argument that can be followed by zero or one command-line arguments.
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300873 When parsing the command line, if the option string is encountered with no
Éric Araujofde92422011-08-19 01:30:26 +0200874 command-line argument following it, the value of ``const`` will be assumed instead.
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300875 See the nargs_ description for examples.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000876
877The ``const`` keyword argument defaults to ``None``.
878
879
880default
881^^^^^^^
882
883All optional arguments and some positional arguments may be omitted at the
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300884command line. The ``default`` keyword argument of
885:meth:`~ArgumentParser.add_argument`, whose value defaults to ``None``,
Éric Araujofde92422011-08-19 01:30:26 +0200886specifies what value should be used if the command-line argument is not present.
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300887For optional arguments, the ``default`` value is used when the option string
888was not present at the command line::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000889
890 >>> parser = argparse.ArgumentParser()
891 >>> parser.add_argument('--foo', default=42)
892 >>> parser.parse_args('--foo 2'.split())
893 Namespace(foo='2')
894 >>> parser.parse_args(''.split())
895 Namespace(foo=42)
896
Éric Araujo543edbd2011-08-19 01:45:12 +0200897For positional arguments with nargs_ equal to ``?`` or ``*``, the ``default`` value
Éric Araujofde92422011-08-19 01:30:26 +0200898is used when no command-line argument was present::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000899
900 >>> parser = argparse.ArgumentParser()
901 >>> parser.add_argument('foo', nargs='?', default=42)
902 >>> parser.parse_args('a'.split())
903 Namespace(foo='a')
904 >>> parser.parse_args(''.split())
905 Namespace(foo=42)
906
907
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000908Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the
909command-line argument was not present.::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000910
911 >>> parser = argparse.ArgumentParser()
912 >>> parser.add_argument('--foo', default=argparse.SUPPRESS)
913 >>> parser.parse_args([])
914 Namespace()
915 >>> parser.parse_args(['--foo', '1'])
916 Namespace(foo='1')
917
918
919type
920^^^^
921
Éric Araujod9d7bca2011-08-10 04:19:03 +0200922By default, :class:`ArgumentParser` objects read command-line arguments in as simple
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300923strings. However, quite often the command-line string should instead be
924interpreted as another type, like a :class:`float` or :class:`int`. The
925``type`` keyword argument of :meth:`~ArgumentParser.add_argument` allows any
Éric Araujod9d7bca2011-08-10 04:19:03 +0200926necessary type-checking and type conversions to be performed. Common built-in
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300927types and functions can be used directly as the value of the ``type`` argument::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000928
929 >>> parser = argparse.ArgumentParser()
930 >>> parser.add_argument('foo', type=int)
Georg Brandl04536b02011-01-09 09:31:01 +0000931 >>> parser.add_argument('bar', type=open)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000932 >>> parser.parse_args('2 temp.txt'.split())
Georg Brandl04536b02011-01-09 09:31:01 +0000933 Namespace(bar=<_io.TextIOWrapper name='temp.txt' encoding='UTF-8'>, foo=2)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000934
935To ease the use of various types of files, the argparse module provides the
936factory FileType which takes the ``mode=`` and ``bufsize=`` arguments of the
Georg Brandl04536b02011-01-09 09:31:01 +0000937:func:`open` function. For example, ``FileType('w')`` can be used to create a
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000938writable file::
939
940 >>> parser = argparse.ArgumentParser()
941 >>> parser.add_argument('bar', type=argparse.FileType('w'))
942 >>> parser.parse_args(['out.txt'])
Georg Brandl04536b02011-01-09 09:31:01 +0000943 Namespace(bar=<_io.TextIOWrapper name='out.txt' encoding='UTF-8'>)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000944
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000945``type=`` can take any callable that takes a single string argument and returns
Éric Araujod9d7bca2011-08-10 04:19:03 +0200946the converted value::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000947
948 >>> def perfect_square(string):
949 ... value = int(string)
950 ... sqrt = math.sqrt(value)
951 ... if sqrt != int(sqrt):
952 ... msg = "%r is not a perfect square" % string
953 ... raise argparse.ArgumentTypeError(msg)
954 ... return value
955 ...
956 >>> parser = argparse.ArgumentParser(prog='PROG')
957 >>> parser.add_argument('foo', type=perfect_square)
958 >>> parser.parse_args('9'.split())
959 Namespace(foo=9)
960 >>> parser.parse_args('7'.split())
961 usage: PROG [-h] foo
962 PROG: error: argument foo: '7' is not a perfect square
963
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000964The choices_ keyword argument may be more convenient for type checkers that
965simply check against a range of values::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000966
967 >>> parser = argparse.ArgumentParser(prog='PROG')
Fred Drakec7eb7892011-03-03 05:29:59 +0000968 >>> parser.add_argument('foo', type=int, choices=range(5, 10))
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000969 >>> parser.parse_args('7'.split())
970 Namespace(foo=7)
971 >>> parser.parse_args('11'.split())
972 usage: PROG [-h] {5,6,7,8,9}
973 PROG: error: argument foo: invalid choice: 11 (choose from 5, 6, 7, 8, 9)
974
975See the choices_ section for more details.
976
977
978choices
979^^^^^^^
980
Éric Araujod9d7bca2011-08-10 04:19:03 +0200981Some command-line arguments should be selected from a restricted set of values.
Benjamin Peterson98047eb2010-03-03 02:07:08 +0000982These can be handled by passing a container object as the ``choices`` keyword
Ezio Melotti5569e9b2011-04-22 01:42:10 +0300983argument to :meth:`~ArgumentParser.add_argument`. When the command line is
Éric Araujofde92422011-08-19 01:30:26 +0200984parsed, argument values will be checked, and an error message will be displayed if
985the argument was not one of the acceptable values::
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000986
987 >>> parser = argparse.ArgumentParser(prog='PROG')
988 >>> parser.add_argument('foo', choices='abc')
989 >>> parser.parse_args('c'.split())
990 Namespace(foo='c')
991 >>> parser.parse_args('X'.split())
992 usage: PROG [-h] {a,b,c}
993 PROG: error: argument foo: invalid choice: 'X' (choose from 'a', 'b', 'c')
994
995Note that inclusion in the ``choices`` container is checked after any type_
996conversions have been performed, so the type of the objects in the ``choices``
997container should match the type_ specified::
998
999 >>> parser = argparse.ArgumentParser(prog='PROG')
1000 >>> parser.add_argument('foo', type=complex, choices=[1, 1j])
1001 >>> parser.parse_args('1j'.split())
1002 Namespace(foo=1j)
1003 >>> parser.parse_args('-- -4'.split())
1004 usage: PROG [-h] {1,1j}
1005 PROG: error: argument foo: invalid choice: (-4+0j) (choose from 1, 1j)
1006
1007Any object that supports the ``in`` operator can be passed as the ``choices``
1008value, so :class:`dict` objects, :class:`set` objects, custom containers,
1009etc. are all supported.
1010
1011
1012required
1013^^^^^^^^
1014
Ezio Melotti0ee9c1b2011-04-21 16:12:17 +03001015In general, the :mod:`argparse` module assumes that flags like ``-f`` and ``--bar``
Georg Brandl1d827ff2011-04-16 16:44:54 +02001016indicate *optional* arguments, which can always be omitted at the command line.
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001017To make an option *required*, ``True`` can be specified for the ``required=``
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001018keyword argument to :meth:`~ArgumentParser.add_argument`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001019
1020 >>> parser = argparse.ArgumentParser()
1021 >>> parser.add_argument('--foo', required=True)
1022 >>> parser.parse_args(['--foo', 'BAR'])
1023 Namespace(foo='BAR')
1024 >>> parser.parse_args([])
1025 usage: argparse.py [-h] [--foo FOO]
1026 argparse.py: error: option --foo is required
1027
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001028As the example shows, if an option is marked as ``required``,
1029:meth:`~ArgumentParser.parse_args` will report an error if that option is not
1030present at the command line.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001031
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001032.. note::
1033
1034 Required options are generally considered bad form because users expect
1035 *options* to be *optional*, and thus they should be avoided when possible.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001036
1037
1038help
1039^^^^
1040
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001041The ``help`` value is a string containing a brief description of the argument.
1042When a user requests help (usually by using ``-h`` or ``--help`` at the
Georg Brandl1d827ff2011-04-16 16:44:54 +02001043command line), these ``help`` descriptions will be displayed with each
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001044argument::
1045
1046 >>> parser = argparse.ArgumentParser(prog='frobble')
1047 >>> parser.add_argument('--foo', action='store_true',
1048 ... help='foo the bars before frobbling')
1049 >>> parser.add_argument('bar', nargs='+',
1050 ... help='one of the bars to be frobbled')
1051 >>> parser.parse_args('-h'.split())
1052 usage: frobble [-h] [--foo] bar [bar ...]
1053
1054 positional arguments:
1055 bar one of the bars to be frobbled
1056
1057 optional arguments:
1058 -h, --help show this help message and exit
1059 --foo foo the bars before frobbling
1060
1061The ``help`` strings can include various format specifiers to avoid repetition
1062of things like the program name or the argument default_. The available
1063specifiers include the program name, ``%(prog)s`` and most keyword arguments to
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001064:meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, ``%(type)s``, etc.::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001065
1066 >>> parser = argparse.ArgumentParser(prog='frobble')
1067 >>> parser.add_argument('bar', nargs='?', type=int, default=42,
1068 ... help='the bar to %(prog)s (default: %(default)s)')
1069 >>> parser.print_help()
1070 usage: frobble [-h] [bar]
1071
1072 positional arguments:
1073 bar the bar to frobble (default: 42)
1074
1075 optional arguments:
1076 -h, --help show this help message and exit
1077
Sandro Tosiea320ab2012-01-03 18:37:03 +01001078:mod:`argparse` supports silencing the help entry for certain options, by
1079setting the ``help`` value to ``argparse.SUPPRESS``::
1080
1081 >>> parser = argparse.ArgumentParser(prog='frobble')
1082 >>> parser.add_argument('--foo', help=argparse.SUPPRESS)
1083 >>> parser.print_help()
1084 usage: frobble [-h]
1085
1086 optional arguments:
1087 -h, --help show this help message and exit
1088
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001089
1090metavar
1091^^^^^^^
1092
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001093When :class:`ArgumentParser` generates help messages, it need some way to refer
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001094to each expected argument. By default, ArgumentParser objects use the dest_
1095value as the "name" of each object. By default, for positional argument
1096actions, the dest_ value is used directly, and for optional argument actions,
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001097the dest_ value is uppercased. So, a single positional argument with
Eli Benderskya7795db2011-11-11 10:57:01 +02001098``dest='bar'`` will be referred to as ``bar``. A single
Éric Araujofde92422011-08-19 01:30:26 +02001099optional argument ``--foo`` that should be followed by a single command-line argument
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001100will be referred to as ``FOO``. An example::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001101
1102 >>> parser = argparse.ArgumentParser()
1103 >>> parser.add_argument('--foo')
1104 >>> parser.add_argument('bar')
1105 >>> parser.parse_args('X --foo Y'.split())
1106 Namespace(bar='X', foo='Y')
1107 >>> parser.print_help()
1108 usage: [-h] [--foo FOO] bar
1109
1110 positional arguments:
1111 bar
1112
1113 optional arguments:
1114 -h, --help show this help message and exit
1115 --foo FOO
1116
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001117An alternative name can be specified with ``metavar``::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001118
1119 >>> parser = argparse.ArgumentParser()
1120 >>> parser.add_argument('--foo', metavar='YYY')
1121 >>> parser.add_argument('bar', metavar='XXX')
1122 >>> parser.parse_args('X --foo Y'.split())
1123 Namespace(bar='X', foo='Y')
1124 >>> parser.print_help()
1125 usage: [-h] [--foo YYY] XXX
1126
1127 positional arguments:
1128 XXX
1129
1130 optional arguments:
1131 -h, --help show this help message and exit
1132 --foo YYY
1133
1134Note that ``metavar`` only changes the *displayed* name - the name of the
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001135attribute on the :meth:`~ArgumentParser.parse_args` object is still determined
1136by the dest_ value.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001137
1138Different values of ``nargs`` may cause the metavar to be used multiple times.
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001139Providing a tuple to ``metavar`` specifies a different display for each of the
1140arguments::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001141
1142 >>> parser = argparse.ArgumentParser(prog='PROG')
1143 >>> parser.add_argument('-x', nargs=2)
1144 >>> parser.add_argument('--foo', nargs=2, metavar=('bar', 'baz'))
1145 >>> parser.print_help()
1146 usage: PROG [-h] [-x X X] [--foo bar baz]
1147
1148 optional arguments:
1149 -h, --help show this help message and exit
1150 -x X X
1151 --foo bar baz
1152
1153
1154dest
1155^^^^
1156
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001157Most :class:`ArgumentParser` actions add some value as an attribute of the
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001158object returned by :meth:`~ArgumentParser.parse_args`. The name of this
1159attribute is determined by the ``dest`` keyword argument of
1160:meth:`~ArgumentParser.add_argument`. For positional argument actions,
1161``dest`` is normally supplied as the first argument to
1162:meth:`~ArgumentParser.add_argument`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001163
1164 >>> parser = argparse.ArgumentParser()
1165 >>> parser.add_argument('bar')
1166 >>> parser.parse_args('XXX'.split())
1167 Namespace(bar='XXX')
1168
1169For optional argument actions, the value of ``dest`` is normally inferred from
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001170the option strings. :class:`ArgumentParser` generates the value of ``dest`` by
Éric Araujo543edbd2011-08-19 01:45:12 +02001171taking the first long option string and stripping away the initial ``--``
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001172string. If no long option strings were supplied, ``dest`` will be derived from
Éric Araujo543edbd2011-08-19 01:45:12 +02001173the first short option string by stripping the initial ``-`` character. Any
1174internal ``-`` characters will be converted to ``_`` characters to make sure
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001175the string is a valid attribute name. The examples below illustrate this
1176behavior::
1177
1178 >>> parser = argparse.ArgumentParser()
1179 >>> parser.add_argument('-f', '--foo-bar', '--foo')
1180 >>> parser.add_argument('-x', '-y')
1181 >>> parser.parse_args('-f 1 -x 2'.split())
1182 Namespace(foo_bar='1', x='2')
1183 >>> parser.parse_args('--foo 1 -y 2'.split())
1184 Namespace(foo_bar='1', x='2')
1185
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001186``dest`` allows a custom attribute name to be provided::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001187
1188 >>> parser = argparse.ArgumentParser()
1189 >>> parser.add_argument('--foo', dest='bar')
1190 >>> parser.parse_args('--foo XXX'.split())
1191 Namespace(bar='XXX')
1192
1193
1194The parse_args() method
1195-----------------------
1196
Georg Brandle0bf91d2010-10-17 10:34:28 +00001197.. method:: ArgumentParser.parse_args(args=None, namespace=None)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001198
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001199 Convert argument strings to objects and assign them as attributes of the
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001200 namespace. Return the populated namespace.
1201
1202 Previous calls to :meth:`add_argument` determine exactly what objects are
1203 created and how they are assigned. See the documentation for
1204 :meth:`add_argument` for details.
1205
Éric Araujofde92422011-08-19 01:30:26 +02001206 By default, the argument strings are taken from :data:`sys.argv`, and a new empty
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001207 :class:`Namespace` object is created for the attributes.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001208
Georg Brandle0bf91d2010-10-17 10:34:28 +00001209
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001210Option value syntax
1211^^^^^^^^^^^^^^^^^^^
1212
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001213The :meth:`~ArgumentParser.parse_args` method supports several ways of
1214specifying the value of an option (if it takes one). In the simplest case, the
1215option and its value are passed as two separate arguments::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001216
1217 >>> parser = argparse.ArgumentParser(prog='PROG')
1218 >>> parser.add_argument('-x')
1219 >>> parser.add_argument('--foo')
1220 >>> parser.parse_args('-x X'.split())
1221 Namespace(foo=None, x='X')
1222 >>> parser.parse_args('--foo FOO'.split())
1223 Namespace(foo='FOO', x=None)
1224
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001225For long options (options with names longer than a single character), the option
Georg Brandl1d827ff2011-04-16 16:44:54 +02001226and value can also be passed as a single command-line argument, using ``=`` to
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001227separate them::
1228
1229 >>> parser.parse_args('--foo=FOO'.split())
1230 Namespace(foo='FOO', x=None)
1231
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001232For short options (options only one character long), the option and its value
1233can be concatenated::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001234
1235 >>> parser.parse_args('-xX'.split())
1236 Namespace(foo=None, x='X')
1237
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001238Several short options can be joined together, using only a single ``-`` prefix,
1239as long as only the last option (or none of them) requires a value::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001240
1241 >>> parser = argparse.ArgumentParser(prog='PROG')
1242 >>> parser.add_argument('-x', action='store_true')
1243 >>> parser.add_argument('-y', action='store_true')
1244 >>> parser.add_argument('-z')
1245 >>> parser.parse_args('-xyzZ'.split())
1246 Namespace(x=True, y=True, z='Z')
1247
1248
1249Invalid arguments
1250^^^^^^^^^^^^^^^^^
1251
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001252While parsing the command line, :meth:`~ArgumentParser.parse_args` checks for a
1253variety of errors, including ambiguous options, invalid types, invalid options,
1254wrong number of positional arguments, etc. When it encounters such an error,
1255it exits and prints the error along with a usage message::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001256
1257 >>> parser = argparse.ArgumentParser(prog='PROG')
1258 >>> parser.add_argument('--foo', type=int)
1259 >>> parser.add_argument('bar', nargs='?')
1260
1261 >>> # invalid type
1262 >>> parser.parse_args(['--foo', 'spam'])
1263 usage: PROG [-h] [--foo FOO] [bar]
1264 PROG: error: argument --foo: invalid int value: 'spam'
1265
1266 >>> # invalid option
1267 >>> parser.parse_args(['--bar'])
1268 usage: PROG [-h] [--foo FOO] [bar]
1269 PROG: error: no such option: --bar
1270
1271 >>> # wrong number of arguments
1272 >>> parser.parse_args(['spam', 'badger'])
1273 usage: PROG [-h] [--foo FOO] [bar]
1274 PROG: error: extra arguments found: badger
1275
1276
Éric Araujo543edbd2011-08-19 01:45:12 +02001277Arguments containing ``-``
1278^^^^^^^^^^^^^^^^^^^^^^^^^^
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001279
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001280The :meth:`~ArgumentParser.parse_args` method attempts to give errors whenever
1281the user has clearly made a mistake, but some situations are inherently
Éric Araujo543edbd2011-08-19 01:45:12 +02001282ambiguous. For example, the command-line argument ``-1`` could either be an
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001283attempt to specify an option or an attempt to provide a positional argument.
1284The :meth:`~ArgumentParser.parse_args` method is cautious here: positional
Éric Araujo543edbd2011-08-19 01:45:12 +02001285arguments may only begin with ``-`` if they look like negative numbers and
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001286there are no options in the parser that look like negative numbers::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001287
1288 >>> parser = argparse.ArgumentParser(prog='PROG')
1289 >>> parser.add_argument('-x')
1290 >>> parser.add_argument('foo', nargs='?')
1291
1292 >>> # no negative number options, so -1 is a positional argument
1293 >>> parser.parse_args(['-x', '-1'])
1294 Namespace(foo=None, x='-1')
1295
1296 >>> # no negative number options, so -1 and -5 are positional arguments
1297 >>> parser.parse_args(['-x', '-1', '-5'])
1298 Namespace(foo='-5', x='-1')
1299
1300 >>> parser = argparse.ArgumentParser(prog='PROG')
1301 >>> parser.add_argument('-1', dest='one')
1302 >>> parser.add_argument('foo', nargs='?')
1303
1304 >>> # negative number options present, so -1 is an option
1305 >>> parser.parse_args(['-1', 'X'])
1306 Namespace(foo=None, one='X')
1307
1308 >>> # negative number options present, so -2 is an option
1309 >>> parser.parse_args(['-2'])
1310 usage: PROG [-h] [-1 ONE] [foo]
1311 PROG: error: no such option: -2
1312
1313 >>> # negative number options present, so both -1s are options
1314 >>> parser.parse_args(['-1', '-1'])
1315 usage: PROG [-h] [-1 ONE] [foo]
1316 PROG: error: argument -1: expected one argument
1317
Éric Araujo543edbd2011-08-19 01:45:12 +02001318If you have positional arguments that must begin with ``-`` and don't look
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001319like negative numbers, you can insert the pseudo-argument ``'--'`` which tells
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001320:meth:`~ArgumentParser.parse_args` that everything after that is a positional
1321argument::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001322
1323 >>> parser.parse_args(['--', '-f'])
1324 Namespace(foo='-f', one=None)
1325
1326
1327Argument abbreviations
1328^^^^^^^^^^^^^^^^^^^^^^
1329
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001330The :meth:`~ArgumentParser.parse_args` method allows long options to be
1331abbreviated if the abbreviation is unambiguous::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001332
1333 >>> parser = argparse.ArgumentParser(prog='PROG')
1334 >>> parser.add_argument('-bacon')
1335 >>> parser.add_argument('-badger')
1336 >>> parser.parse_args('-bac MMM'.split())
1337 Namespace(bacon='MMM', badger=None)
1338 >>> parser.parse_args('-bad WOOD'.split())
1339 Namespace(bacon=None, badger='WOOD')
1340 >>> parser.parse_args('-ba BA'.split())
1341 usage: PROG [-h] [-bacon BACON] [-badger BADGER]
1342 PROG: error: ambiguous option: -ba could match -badger, -bacon
1343
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001344An error is produced for arguments that could produce more than one options.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001345
1346
1347Beyond ``sys.argv``
1348^^^^^^^^^^^^^^^^^^^
1349
Éric Araujod9d7bca2011-08-10 04:19:03 +02001350Sometimes it may be useful to have an ArgumentParser parse arguments other than those
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001351of :data:`sys.argv`. This can be accomplished by passing a list of strings to
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001352:meth:`~ArgumentParser.parse_args`. This is useful for testing at the
1353interactive prompt::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001354
1355 >>> parser = argparse.ArgumentParser()
1356 >>> parser.add_argument(
Fred Drakec7eb7892011-03-03 05:29:59 +00001357 ... 'integers', metavar='int', type=int, choices=range(10),
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001358 ... nargs='+', help='an integer in the range 0..9')
1359 >>> parser.add_argument(
1360 ... '--sum', dest='accumulate', action='store_const', const=sum,
1361 ... default=max, help='sum the integers (default: find the max)')
1362 >>> parser.parse_args(['1', '2', '3', '4'])
1363 Namespace(accumulate=<built-in function max>, integers=[1, 2, 3, 4])
1364 >>> parser.parse_args('1 2 3 4 --sum'.split())
1365 Namespace(accumulate=<built-in function sum>, integers=[1, 2, 3, 4])
1366
1367
Steven Bethardd8f2d502011-03-26 19:50:06 +01001368The Namespace object
1369^^^^^^^^^^^^^^^^^^^^
1370
Éric Araujo63b18a42011-07-29 17:59:17 +02001371.. class:: Namespace
1372
1373 Simple class used by default by :meth:`~ArgumentParser.parse_args` to create
1374 an object holding attributes and return it.
1375
1376This class is deliberately simple, just an :class:`object` subclass with a
1377readable string representation. If you prefer to have dict-like view of the
1378attributes, you can use the standard Python idiom, :func:`vars`::
Steven Bethardd8f2d502011-03-26 19:50:06 +01001379
1380 >>> parser = argparse.ArgumentParser()
1381 >>> parser.add_argument('--foo')
1382 >>> args = parser.parse_args(['--foo', 'BAR'])
1383 >>> vars(args)
1384 {'foo': 'BAR'}
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001385
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001386It may also be useful to have an :class:`ArgumentParser` assign attributes to an
Steven Bethardd8f2d502011-03-26 19:50:06 +01001387already existing object, rather than a new :class:`Namespace` object. This can
1388be achieved by specifying the ``namespace=`` keyword argument::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001389
Éric Araujo28053fb2010-11-22 03:09:19 +00001390 >>> class C:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001391 ... pass
1392 ...
1393 >>> c = C()
1394 >>> parser = argparse.ArgumentParser()
1395 >>> parser.add_argument('--foo')
1396 >>> parser.parse_args(args=['--foo', 'BAR'], namespace=c)
1397 >>> c.foo
1398 'BAR'
1399
1400
1401Other utilities
1402---------------
1403
1404Sub-commands
1405^^^^^^^^^^^^
1406
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001407.. method:: ArgumentParser.add_subparsers()
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001408
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001409 Many programs split up their functionality into a number of sub-commands,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001410 for example, the ``svn`` program can invoke sub-commands like ``svn
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001411 checkout``, ``svn update``, and ``svn commit``. Splitting up functionality
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001412 this way can be a particularly good idea when a program performs several
1413 different functions which require different kinds of command-line arguments.
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001414 :class:`ArgumentParser` supports the creation of such sub-commands with the
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001415 :meth:`add_subparsers` method. The :meth:`add_subparsers` method is normally
1416 called with no arguments and returns an special action object. This object
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001417 has a single method, :meth:`~ArgumentParser.add_parser`, which takes a
1418 command name and any :class:`ArgumentParser` constructor arguments, and
1419 returns an :class:`ArgumentParser` object that can be modified as usual.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001420
1421 Some example usage::
1422
1423 >>> # create the top-level parser
1424 >>> parser = argparse.ArgumentParser(prog='PROG')
1425 >>> parser.add_argument('--foo', action='store_true', help='foo help')
1426 >>> subparsers = parser.add_subparsers(help='sub-command help')
1427 >>>
1428 >>> # create the parser for the "a" command
1429 >>> parser_a = subparsers.add_parser('a', help='a help')
1430 >>> parser_a.add_argument('bar', type=int, help='bar help')
1431 >>>
1432 >>> # create the parser for the "b" command
1433 >>> parser_b = subparsers.add_parser('b', help='b help')
1434 >>> parser_b.add_argument('--baz', choices='XYZ', help='baz help')
1435 >>>
Éric Araujofde92422011-08-19 01:30:26 +02001436 >>> # parse some argument lists
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001437 >>> parser.parse_args(['a', '12'])
1438 Namespace(bar=12, foo=False)
1439 >>> parser.parse_args(['--foo', 'b', '--baz', 'Z'])
1440 Namespace(baz='Z', foo=True)
1441
1442 Note that the object returned by :meth:`parse_args` will only contain
1443 attributes for the main parser and the subparser that was selected by the
1444 command line (and not any other subparsers). So in the example above, when
Éric Araujo543edbd2011-08-19 01:45:12 +02001445 the ``a`` command is specified, only the ``foo`` and ``bar`` attributes are
1446 present, and when the ``b`` command is specified, only the ``foo`` and
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001447 ``baz`` attributes are present.
1448
1449 Similarly, when a help message is requested from a subparser, only the help
1450 for that particular parser will be printed. The help message will not
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001451 include parent parser or sibling parser messages. (A help message for each
1452 subparser command, however, can be given by supplying the ``help=`` argument
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001453 to :meth:`add_parser` as above.)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001454
1455 ::
1456
1457 >>> parser.parse_args(['--help'])
1458 usage: PROG [-h] [--foo] {a,b} ...
1459
1460 positional arguments:
1461 {a,b} sub-command help
1462 a a help
1463 b b help
1464
1465 optional arguments:
1466 -h, --help show this help message and exit
1467 --foo foo help
1468
1469 >>> parser.parse_args(['a', '--help'])
1470 usage: PROG a [-h] bar
1471
1472 positional arguments:
1473 bar bar help
1474
1475 optional arguments:
1476 -h, --help show this help message and exit
1477
1478 >>> parser.parse_args(['b', '--help'])
1479 usage: PROG b [-h] [--baz {X,Y,Z}]
1480
1481 optional arguments:
1482 -h, --help show this help message and exit
1483 --baz {X,Y,Z} baz help
1484
1485 The :meth:`add_subparsers` method also supports ``title`` and ``description``
1486 keyword arguments. When either is present, the subparser's commands will
1487 appear in their own group in the help output. For example::
1488
1489 >>> parser = argparse.ArgumentParser()
1490 >>> subparsers = parser.add_subparsers(title='subcommands',
1491 ... description='valid subcommands',
1492 ... help='additional help')
1493 >>> subparsers.add_parser('foo')
1494 >>> subparsers.add_parser('bar')
1495 >>> parser.parse_args(['-h'])
1496 usage: [-h] {foo,bar} ...
1497
1498 optional arguments:
1499 -h, --help show this help message and exit
1500
1501 subcommands:
1502 valid subcommands
1503
1504 {foo,bar} additional help
1505
Steven Bethardfd311a72010-12-18 11:19:23 +00001506 Furthermore, ``add_parser`` supports an additional ``aliases`` argument,
1507 which allows multiple strings to refer to the same subparser. This example,
1508 like ``svn``, aliases ``co`` as a shorthand for ``checkout``::
1509
1510 >>> parser = argparse.ArgumentParser()
1511 >>> subparsers = parser.add_subparsers()
1512 >>> checkout = subparsers.add_parser('checkout', aliases=['co'])
1513 >>> checkout.add_argument('foo')
1514 >>> parser.parse_args(['co', 'bar'])
1515 Namespace(foo='bar')
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001516
1517 One particularly effective way of handling sub-commands is to combine the use
1518 of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` so
1519 that each subparser knows which Python function it should execute. For
1520 example::
1521
1522 >>> # sub-command functions
1523 >>> def foo(args):
Benjamin Petersonb2deb112010-03-03 02:09:18 +00001524 ... print(args.x * args.y)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001525 ...
1526 >>> def bar(args):
Benjamin Petersonb2deb112010-03-03 02:09:18 +00001527 ... print('((%s))' % args.z)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001528 ...
1529 >>> # create the top-level parser
1530 >>> parser = argparse.ArgumentParser()
1531 >>> subparsers = parser.add_subparsers()
1532 >>>
1533 >>> # create the parser for the "foo" command
1534 >>> parser_foo = subparsers.add_parser('foo')
1535 >>> parser_foo.add_argument('-x', type=int, default=1)
1536 >>> parser_foo.add_argument('y', type=float)
1537 >>> parser_foo.set_defaults(func=foo)
1538 >>>
1539 >>> # create the parser for the "bar" command
1540 >>> parser_bar = subparsers.add_parser('bar')
1541 >>> parser_bar.add_argument('z')
1542 >>> parser_bar.set_defaults(func=bar)
1543 >>>
1544 >>> # parse the args and call whatever function was selected
1545 >>> args = parser.parse_args('foo 1 -x 2'.split())
1546 >>> args.func(args)
1547 2.0
1548 >>>
1549 >>> # parse the args and call whatever function was selected
1550 >>> args = parser.parse_args('bar XYZYX'.split())
1551 >>> args.func(args)
1552 ((XYZYX))
1553
Steven Bethardfd311a72010-12-18 11:19:23 +00001554 This way, you can let :meth:`parse_args` do the job of calling the
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001555 appropriate function after argument parsing is complete. Associating
1556 functions with actions like this is typically the easiest way to handle the
1557 different actions for each of your subparsers. However, if it is necessary
1558 to check the name of the subparser that was invoked, the ``dest`` keyword
1559 argument to the :meth:`add_subparsers` call will work::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001560
1561 >>> parser = argparse.ArgumentParser()
1562 >>> subparsers = parser.add_subparsers(dest='subparser_name')
1563 >>> subparser1 = subparsers.add_parser('1')
1564 >>> subparser1.add_argument('-x')
1565 >>> subparser2 = subparsers.add_parser('2')
1566 >>> subparser2.add_argument('y')
1567 >>> parser.parse_args(['2', 'frobble'])
1568 Namespace(subparser_name='2', y='frobble')
1569
1570
1571FileType objects
1572^^^^^^^^^^^^^^^^
1573
1574.. class:: FileType(mode='r', bufsize=None)
1575
1576 The :class:`FileType` factory creates objects that can be passed to the type
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001577 argument of :meth:`ArgumentParser.add_argument`. Arguments that have
Éric Araujod9d7bca2011-08-10 04:19:03 +02001578 :class:`FileType` objects as their type will open command-line arguments as files
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001579 with the requested modes and buffer sizes:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001580
1581 >>> parser = argparse.ArgumentParser()
1582 >>> parser.add_argument('--output', type=argparse.FileType('wb', 0))
1583 >>> parser.parse_args(['--output', 'out'])
Georg Brandl04536b02011-01-09 09:31:01 +00001584 Namespace(output=<_io.BufferedWriter name='out'>)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001585
1586 FileType objects understand the pseudo-argument ``'-'`` and automatically
1587 convert this into ``sys.stdin`` for readable :class:`FileType` objects and
1588 ``sys.stdout`` for writable :class:`FileType` objects:
1589
1590 >>> parser = argparse.ArgumentParser()
1591 >>> parser.add_argument('infile', type=argparse.FileType('r'))
1592 >>> parser.parse_args(['-'])
Georg Brandl04536b02011-01-09 09:31:01 +00001593 Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001594
1595
1596Argument groups
1597^^^^^^^^^^^^^^^
1598
Georg Brandle0bf91d2010-10-17 10:34:28 +00001599.. method:: ArgumentParser.add_argument_group(title=None, description=None)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001600
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001601 By default, :class:`ArgumentParser` groups command-line arguments into
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001602 "positional arguments" and "optional arguments" when displaying help
1603 messages. When there is a better conceptual grouping of arguments than this
1604 default one, appropriate groups can be created using the
1605 :meth:`add_argument_group` method::
1606
1607 >>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)
1608 >>> group = parser.add_argument_group('group')
1609 >>> group.add_argument('--foo', help='foo help')
1610 >>> group.add_argument('bar', help='bar help')
1611 >>> parser.print_help()
1612 usage: PROG [--foo FOO] bar
1613
1614 group:
1615 bar bar help
1616 --foo FOO foo help
1617
1618 The :meth:`add_argument_group` method returns an argument group object which
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001619 has an :meth:`~ArgumentParser.add_argument` method just like a regular
1620 :class:`ArgumentParser`. When an argument is added to the group, the parser
1621 treats it just like a normal argument, but displays the argument in a
1622 separate group for help messages. The :meth:`add_argument_group` method
Georg Brandle0bf91d2010-10-17 10:34:28 +00001623 accepts *title* and *description* arguments which can be used to
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001624 customize this display::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001625
1626 >>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)
1627 >>> group1 = parser.add_argument_group('group1', 'group1 description')
1628 >>> group1.add_argument('foo', help='foo help')
1629 >>> group2 = parser.add_argument_group('group2', 'group2 description')
1630 >>> group2.add_argument('--bar', help='bar help')
1631 >>> parser.print_help()
1632 usage: PROG [--bar BAR] foo
1633
1634 group1:
1635 group1 description
1636
1637 foo foo help
1638
1639 group2:
1640 group2 description
1641
1642 --bar BAR bar help
1643
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001644 Note that any arguments not your user defined groups will end up back in the
1645 usual "positional arguments" and "optional arguments" sections.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001646
1647
1648Mutual exclusion
1649^^^^^^^^^^^^^^^^
1650
Georg Brandle0bf91d2010-10-17 10:34:28 +00001651.. method:: add_mutually_exclusive_group(required=False)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001652
Ezio Melotti0ee9c1b2011-04-21 16:12:17 +03001653 Create a mutually exclusive group. :mod:`argparse` will make sure that only
1654 one of the arguments in the mutually exclusive group was present on the
1655 command line::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001656
1657 >>> parser = argparse.ArgumentParser(prog='PROG')
1658 >>> group = parser.add_mutually_exclusive_group()
1659 >>> group.add_argument('--foo', action='store_true')
1660 >>> group.add_argument('--bar', action='store_false')
1661 >>> parser.parse_args(['--foo'])
1662 Namespace(bar=True, foo=True)
1663 >>> parser.parse_args(['--bar'])
1664 Namespace(bar=False, foo=False)
1665 >>> parser.parse_args(['--foo', '--bar'])
1666 usage: PROG [-h] [--foo | --bar]
1667 PROG: error: argument --bar: not allowed with argument --foo
1668
Georg Brandle0bf91d2010-10-17 10:34:28 +00001669 The :meth:`add_mutually_exclusive_group` method also accepts a *required*
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001670 argument, to indicate that at least one of the mutually exclusive arguments
1671 is required::
1672
1673 >>> parser = argparse.ArgumentParser(prog='PROG')
1674 >>> group = parser.add_mutually_exclusive_group(required=True)
1675 >>> group.add_argument('--foo', action='store_true')
1676 >>> group.add_argument('--bar', action='store_false')
1677 >>> parser.parse_args([])
1678 usage: PROG [-h] (--foo | --bar)
1679 PROG: error: one of the arguments --foo --bar is required
1680
1681 Note that currently mutually exclusive argument groups do not support the
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001682 *title* and *description* arguments of
1683 :meth:`~ArgumentParser.add_argument_group`.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001684
1685
1686Parser defaults
1687^^^^^^^^^^^^^^^
1688
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001689.. method:: ArgumentParser.set_defaults(**kwargs)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001690
1691 Most of the time, the attributes of the object returned by :meth:`parse_args`
Éric Araujod9d7bca2011-08-10 04:19:03 +02001692 will be fully determined by inspecting the command-line arguments and the argument
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001693 actions. :meth:`set_defaults` allows some additional
Georg Brandl1d827ff2011-04-16 16:44:54 +02001694 attributes that are determined without any inspection of the command line to
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001695 be added::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001696
1697 >>> parser = argparse.ArgumentParser()
1698 >>> parser.add_argument('foo', type=int)
1699 >>> parser.set_defaults(bar=42, baz='badger')
1700 >>> parser.parse_args(['736'])
1701 Namespace(bar=42, baz='badger', foo=736)
1702
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001703 Note that parser-level defaults always override argument-level defaults::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001704
1705 >>> parser = argparse.ArgumentParser()
1706 >>> parser.add_argument('--foo', default='bar')
1707 >>> parser.set_defaults(foo='spam')
1708 >>> parser.parse_args([])
1709 Namespace(foo='spam')
1710
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001711 Parser-level defaults can be particularly useful when working with multiple
1712 parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an
1713 example of this type.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001714
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001715.. method:: ArgumentParser.get_default(dest)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001716
1717 Get the default value for a namespace attribute, as set by either
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001718 :meth:`~ArgumentParser.add_argument` or by
1719 :meth:`~ArgumentParser.set_defaults`::
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001720
1721 >>> parser = argparse.ArgumentParser()
1722 >>> parser.add_argument('--foo', default='badger')
1723 >>> parser.get_default('foo')
1724 'badger'
1725
1726
1727Printing help
1728^^^^^^^^^^^^^
1729
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001730In most typical applications, :meth:`~ArgumentParser.parse_args` will take
1731care of formatting and printing any usage or error messages. However, several
1732formatting methods are available:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001733
Georg Brandle0bf91d2010-10-17 10:34:28 +00001734.. method:: ArgumentParser.print_usage(file=None)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001735
1736 Print a brief description of how the :class:`ArgumentParser` should be
R. David Murray32e17712010-12-18 16:39:06 +00001737 invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001738 assumed.
1739
Georg Brandle0bf91d2010-10-17 10:34:28 +00001740.. method:: ArgumentParser.print_help(file=None)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001741
1742 Print a help message, including the program usage and information about the
Georg Brandle0bf91d2010-10-17 10:34:28 +00001743 arguments registered with the :class:`ArgumentParser`. If *file* is
R. David Murray32e17712010-12-18 16:39:06 +00001744 ``None``, :data:`sys.stdout` is assumed.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001745
1746There are also variants of these methods that simply return a string instead of
1747printing it:
1748
Georg Brandle0bf91d2010-10-17 10:34:28 +00001749.. method:: ArgumentParser.format_usage()
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001750
1751 Return a string containing a brief description of how the
1752 :class:`ArgumentParser` should be invoked on the command line.
1753
Georg Brandle0bf91d2010-10-17 10:34:28 +00001754.. method:: ArgumentParser.format_help()
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001755
1756 Return a string containing a help message, including the program usage and
1757 information about the arguments registered with the :class:`ArgumentParser`.
1758
1759
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001760Partial parsing
1761^^^^^^^^^^^^^^^
1762
Georg Brandle0bf91d2010-10-17 10:34:28 +00001763.. method:: ArgumentParser.parse_known_args(args=None, namespace=None)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001764
Georg Brandl1d827ff2011-04-16 16:44:54 +02001765Sometimes a script may only parse a few of the command-line arguments, passing
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001766the remaining arguments on to another script or program. In these cases, the
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001767:meth:`~ArgumentParser.parse_known_args` method can be useful. It works much like
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001768:meth:`~ArgumentParser.parse_args` except that it does not produce an error when
1769extra arguments are present. Instead, it returns a two item tuple containing
1770the populated namespace and the list of remaining argument strings.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001771
1772::
1773
1774 >>> parser = argparse.ArgumentParser()
1775 >>> parser.add_argument('--foo', action='store_true')
1776 >>> parser.add_argument('bar')
1777 >>> parser.parse_known_args(['--foo', '--badger', 'BAR', 'spam'])
1778 (Namespace(bar='BAR', foo=True), ['--badger', 'spam'])
1779
1780
1781Customizing file parsing
1782^^^^^^^^^^^^^^^^^^^^^^^^
1783
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001784.. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001785
Georg Brandle0bf91d2010-10-17 10:34:28 +00001786 Arguments that are read from a file (see the *fromfile_prefix_chars*
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001787 keyword argument to the :class:`ArgumentParser` constructor) are read one
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001788 argument per line. :meth:`convert_arg_line_to_args` can be overriden for
1789 fancier reading.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001790
Georg Brandle0bf91d2010-10-17 10:34:28 +00001791 This method takes a single argument *arg_line* which is a string read from
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001792 the argument file. It returns a list of arguments parsed from this string.
1793 The method is called once per line read from the argument file, in order.
1794
1795 A useful override of this method is one that treats each space-separated word
1796 as an argument::
1797
1798 def convert_arg_line_to_args(self, arg_line):
1799 for arg in arg_line.split():
1800 if not arg.strip():
1801 continue
1802 yield arg
1803
1804
Georg Brandl93754922010-10-17 10:28:04 +00001805Exiting methods
1806^^^^^^^^^^^^^^^
1807
1808.. method:: ArgumentParser.exit(status=0, message=None)
1809
1810 This method terminates the program, exiting with the specified *status*
1811 and, if given, it prints a *message* before that.
1812
1813.. method:: ArgumentParser.error(message)
1814
1815 This method prints a usage message including the *message* to the
Senthil Kumaran86a1a892011-08-03 07:42:18 +08001816 standard error and terminates the program with a status code of 2.
Georg Brandl93754922010-10-17 10:28:04 +00001817
Raymond Hettinger677e10a2010-12-07 06:45:30 +00001818.. _upgrading-optparse-code:
Georg Brandl93754922010-10-17 10:28:04 +00001819
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001820Upgrading optparse code
1821-----------------------
1822
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001823Originally, the :mod:`argparse` module had attempted to maintain compatibility
Ezio Melotti0ee9c1b2011-04-21 16:12:17 +03001824with :mod:`optparse`. However, :mod:`optparse` was difficult to extend
1825transparently, particularly with the changes required to support the new
1826``nargs=`` specifiers and better usage messages. When most everything in
1827:mod:`optparse` had either been copy-pasted over or monkey-patched, it no
1828longer seemed practical to try to maintain the backwards compatibility.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001829
Ezio Melotti0ee9c1b2011-04-21 16:12:17 +03001830A partial upgrade path from :mod:`optparse` to :mod:`argparse`:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001831
Ezio Melotti5569e9b2011-04-22 01:42:10 +03001832* Replace all :meth:`optparse.OptionParser.add_option` calls with
1833 :meth:`ArgumentParser.add_argument` calls.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001834
1835* Replace ``options, args = parser.parse_args()`` with ``args =
Georg Brandlc9007082011-01-09 09:04:08 +00001836 parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument`
1837 calls for the positional arguments.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001838
1839* Replace callback actions and the ``callback_*`` keyword arguments with
1840 ``type`` or ``action`` arguments.
1841
1842* Replace string names for ``type`` keyword arguments with the corresponding
1843 type objects (e.g. int, float, complex, etc).
1844
Benjamin Peterson98047eb2010-03-03 02:07:08 +00001845* Replace :class:`optparse.Values` with :class:`Namespace` and
1846 :exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` with
1847 :exc:`ArgumentError`.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001848
1849* Replace strings with implicit arguments such as ``%default`` or ``%prog`` with
Ezio Melotticca4ef82011-04-21 15:26:46 +03001850 the standard Python syntax to use dictionaries to format strings, that is,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001851 ``%(default)s`` and ``%(prog)s``.
Steven Bethard59710962010-05-24 03:21:08 +00001852
1853* Replace the OptionParser constructor ``version`` argument with a call to
1854 ``parser.add_argument('--version', action='version', version='<the version>')``