Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 1 | :mod:`argparse` --- Parser for command-line options, arguments and sub-commands |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 2 | =============================================================================== |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 3 | |
| 4 | .. module:: argparse |
Ezio Melotti | 2409d77 | 2011-04-16 23:13:50 +0300 | [diff] [blame] | 5 | :synopsis: Command-line option and argument-parsing library. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 6 | .. moduleauthor:: Steven Bethard <steven.bethard@gmail.com> |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 7 | .. sectionauthor:: Steven Bethard <steven.bethard@gmail.com> |
| 8 | |
Raymond Hettinger | a199368 | 2011-01-27 01:20:32 +0000 | [diff] [blame] | 9 | **Source code:** :source:`Lib/argparse.py` |
| 10 | |
| 11 | .. versionadded:: 3.2 |
| 12 | |
| 13 | -------------- |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 14 | |
Ezio Melotti | 2409d77 | 2011-04-16 23:13:50 +0300 | [diff] [blame] | 15 | The :mod:`argparse` module makes it easy to write user-friendly command-line |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 16 | interfaces. The program defines what arguments it requires, and :mod:`argparse` |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 17 | will figure out how to parse those out of :data:`sys.argv`. The :mod:`argparse` |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 18 | module also automatically generates help and usage messages and issues errors |
| 19 | when users give the program invalid arguments. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 20 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 21 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 22 | Example |
| 23 | ------- |
| 24 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 25 | The following code is a Python program that takes a list of integers and |
| 26 | produces either the sum or the max:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 27 | |
| 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 Peterson | b2deb11 | 2010-03-03 02:09:18 +0000 | [diff] [blame] | 38 | print(args.accumulate(args.integers)) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 39 | |
| 40 | Assuming the Python code above is saved into a file called ``prog.py``, it can |
| 41 | be 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 | |
| 55 | When run with the appropriate arguments, it prints either the sum or the max of |
| 56 | the 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 | |
| 64 | If 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 | |
| 70 | The following sections walk you through this example. |
| 71 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 72 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 73 | Creating a parser |
| 74 | ^^^^^^^^^^^^^^^^^ |
| 75 | |
Benjamin Peterson | 2614cda | 2010-03-21 22:36:19 +0000 | [diff] [blame] | 76 | The first step in using the :mod:`argparse` is creating an |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 77 | :class:`ArgumentParser` object:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 78 | |
| 79 | >>> parser = argparse.ArgumentParser(description='Process some integers.') |
| 80 | |
| 81 | The :class:`ArgumentParser` object will hold all the information necessary to |
Ezio Melotti | cca4ef8 | 2011-04-21 15:26:46 +0300 | [diff] [blame] | 82 | parse the command line into Python data types. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 83 | |
| 84 | |
| 85 | Adding arguments |
| 86 | ^^^^^^^^^^^^^^^^ |
| 87 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 88 | Filling an :class:`ArgumentParser` with information about program arguments is |
| 89 | done by making calls to the :meth:`~ArgumentParser.add_argument` method. |
| 90 | Generally, these calls tell the :class:`ArgumentParser` how to take the strings |
| 91 | on the command line and turn them into objects. This information is stored and |
| 92 | used when :meth:`~ArgumentParser.parse_args` is called. For example:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 93 | |
| 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 Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 100 | Later, calling :meth:`~ArgumentParser.parse_args` will return an object with |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 101 | two attributes, ``integers`` and ``accumulate``. The ``integers`` attribute |
| 102 | will be a list of one or more ints, and the ``accumulate`` attribute will be |
| 103 | either the :func:`sum` function, if ``--sum`` was specified at the command line, |
| 104 | or the :func:`max` function if it was not. |
| 105 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 106 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 107 | Parsing arguments |
| 108 | ^^^^^^^^^^^^^^^^^ |
| 109 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 110 | :class:`ArgumentParser` parses args through the |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 111 | :meth:`~ArgumentParser.parse_args` method. This will inspect the command line, |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 112 | convert each arg to the appropriate type and then invoke the appropriate action. |
| 113 | In most cases, this means a simple namespace object will be built up from |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 114 | attributes parsed out of the command line:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 115 | |
| 116 | >>> parser.parse_args(['--sum', '7', '-1', '42']) |
| 117 | Namespace(accumulate=<built-in function sum>, integers=[7, -1, 42]) |
| 118 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 119 | In a script, :meth:`~ArgumentParser.parse_args` will typically be called with no |
| 120 | arguments, and the :class:`ArgumentParser` will automatically determine the |
| 121 | command-line args from :data:`sys.argv`. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 122 | |
| 123 | |
| 124 | ArgumentParser objects |
| 125 | ---------------------- |
| 126 | |
Georg Brandl | c900708 | 2011-01-09 09:04:08 +0000 | [diff] [blame] | 127 | .. class:: ArgumentParser([description], [epilog], [prog], [usage], [add_help], \ |
| 128 | [argument_default], [parents], [prefix_chars], \ |
| 129 | [conflict_handler], [formatter_class]) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 130 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 138 | * add_help_ - Add a -h/--help option to the parser. (default: ``True``) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 139 | |
| 140 | * argument_default_ - Set the global default value for arguments. |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 141 | (default: ``None``) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 142 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 143 | * parents_ - A list of :class:`ArgumentParser` objects whose arguments should |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 144 | 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 150 | which additional arguments should be read. (default: ``None``) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 151 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 157 | * prog_ - The name of the program (default: |
| 158 | :data:`sys.argv[0]`) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 159 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 160 | * usage_ - The string describing the program usage (default: generated) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 161 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 162 | The following sections describe how each of these are used. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 163 | |
| 164 | |
| 165 | description |
| 166 | ^^^^^^^^^^^ |
| 167 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 168 | Most calls to the :class:`ArgumentParser` constructor will use the |
| 169 | ``description=`` keyword argument. This argument gives a brief description of |
| 170 | what the program does and how it works. In help messages, the description is |
| 171 | displayed between the command-line usage string and the help messages for the |
| 172 | various arguments:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 173 | |
| 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 | |
| 183 | By default, the description will be line-wrapped so that it fits within the |
| 184 | given space. To change this behavior, see the formatter_class_ argument. |
| 185 | |
| 186 | |
| 187 | epilog |
| 188 | ^^^^^^ |
| 189 | |
| 190 | Some programs like to display additional description of the program after the |
| 191 | description of the arguments. Such text can be specified using the ``epilog=`` |
| 192 | argument 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 | |
| 207 | As with the description_ argument, the ``epilog=`` text is by default |
| 208 | line-wrapped, but this behavior can be adjusted with the formatter_class_ |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 209 | argument to :class:`ArgumentParser`. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 210 | |
| 211 | |
| 212 | add_help |
| 213 | ^^^^^^^^ |
| 214 | |
R. David Murray | 88c49fe | 2010-08-03 17:56:09 +0000 | [diff] [blame] | 215 | By default, ArgumentParser objects add an option which simply displays |
| 216 | the parser's help message. For example, consider a file named |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 217 | ``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 Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 224 | If ``-h`` or ``--help`` is supplied at the command line, the ArgumentParser |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 225 | help 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 | |
| 234 | Occasionally, it may be useful to disable the addition of this help option. |
| 235 | This can be achieved by passing ``False`` as the ``add_help=`` argument to |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 236 | :class:`ArgumentParser`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 237 | |
| 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 Murray | 88c49fe | 2010-08-03 17:56:09 +0000 | [diff] [blame] | 246 | The help option is typically ``-h/--help``. The exception to this is |
| 247 | if the ``prefix_chars=`` is specified and does not include ``'-'``, in |
| 248 | which case ``-h`` and ``--help`` are not valid options. In |
| 249 | this case, the first character in ``prefix_chars`` is used to prefix |
| 250 | the 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 Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 260 | prefix_chars |
| 261 | ^^^^^^^^^^^^ |
| 262 | |
| 263 | Most command-line options will use ``'-'`` as the prefix, e.g. ``-f/--foo``. |
R. David Murray | 88c49fe | 2010-08-03 17:56:09 +0000 | [diff] [blame] | 264 | Parsers that need to support different or additional prefix |
| 265 | characters, e.g. for options |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 266 | like ``+f`` or ``/foo``, may specify them using the ``prefix_chars=`` argument |
| 267 | to 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 | |
| 275 | The ``prefix_chars=`` argument defaults to ``'-'``. Supplying a set of |
| 276 | characters that does not include ``'-'`` will cause ``-f/--foo`` options to be |
| 277 | disallowed. |
| 278 | |
| 279 | |
| 280 | fromfile_prefix_chars |
| 281 | ^^^^^^^^^^^^^^^^^^^^^ |
| 282 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 283 | Sometimes, for example when dealing with a particularly long argument lists, it |
| 284 | may make sense to keep the list of arguments in a file rather than typing it out |
| 285 | at 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 |
| 287 | specified characters will be treated as files, and will be replaced by the |
| 288 | arguments they contain. For example:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 289 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 290 | >>> with open('args.txt', 'w') as fp: |
| 291 | ... fp.write('-f\nbar') |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 292 | >>> parser = argparse.ArgumentParser(fromfile_prefix_chars='@') |
| 293 | >>> parser.add_argument('-f') |
| 294 | >>> parser.parse_args(['-f', 'foo', '@args.txt']) |
| 295 | Namespace(f='bar') |
| 296 | |
| 297 | Arguments read from a file must by default be one per line (but see also |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 298 | :meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if they |
| 299 | were in the same place as the original file referencing argument on the command |
| 300 | line. So in the example above, the expression ``['-f', 'foo', '@args.txt']`` |
| 301 | is considered equivalent to the expression ``['-f', 'foo', '-f', 'bar']``. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 302 | |
| 303 | The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that |
| 304 | arguments will never be treated as file references. |
| 305 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 306 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 307 | argument_default |
| 308 | ^^^^^^^^^^^^^^^^ |
| 309 | |
| 310 | Generally, argument defaults are specified either by passing a default to |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 311 | :meth:`~ArgumentParser.add_argument` or by calling the |
| 312 | :meth:`~ArgumentParser.set_defaults` methods with a specific set of name-value |
| 313 | pairs. Sometimes however, it may be useful to specify a single parser-wide |
| 314 | default for arguments. This can be accomplished by passing the |
| 315 | ``argument_default=`` keyword argument to :class:`ArgumentParser`. For example, |
| 316 | to globally suppress attribute creation on :meth:`~ArgumentParser.parse_args` |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 317 | calls, we supply ``argument_default=SUPPRESS``:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 318 | |
| 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 | |
| 328 | parents |
| 329 | ^^^^^^^ |
| 330 | |
| 331 | Sometimes, several parsers share a common set of arguments. Rather than |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 332 | repeating the definitions of these arguments, a single parser with all the |
| 333 | shared arguments and passed to ``parents=`` argument to :class:`ArgumentParser` |
| 334 | can be used. The ``parents=`` argument takes a list of :class:`ArgumentParser` |
| 335 | objects, collects all the positional and optional actions from them, and adds |
| 336 | these actions to the :class:`ArgumentParser` object being constructed:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 337 | |
| 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 | |
| 351 | Note that most parent parsers will specify ``add_help=False``. Otherwise, the |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 352 | :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent |
| 353 | and one in the child) and raise an error. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 354 | |
Steven Bethard | d186f99 | 2011-03-26 21:49:00 +0100 | [diff] [blame] | 355 | .. 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 Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 360 | |
| 361 | formatter_class |
| 362 | ^^^^^^^^^^^^^^^ |
| 363 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 364 | :class:`ArgumentParser` objects allow the help formatting to be customized by |
| 365 | specifying an alternate formatting class. Currently, there are three such |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 366 | classes: |
| 367 | |
| 368 | .. class:: RawDescriptionHelpFormatter |
| 369 | RawTextHelpFormatter |
| 370 | ArgumentDefaultsHelpFormatter |
| 371 | |
| 372 | The first two allow more control over how textual descriptions are displayed, |
| 373 | while the last automatically adds information about argument default values. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 374 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 375 | By default, :class:`ArgumentParser` objects line-wrap the description_ and |
| 376 | epilog_ texts in command-line help messages:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 377 | |
| 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 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 398 | Passing :class:`~argparse.RawDescriptionHelpFormatter` as ``formatter_class=`` |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 399 | indicates that description_ and epilog_ are already correctly formatted and |
| 400 | should not be line-wrapped:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 401 | |
| 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 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 424 | :class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text |
| 425 | including argument descriptions. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 426 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 427 | The other formatter class available, :class:`ArgumentDefaultsHelpFormatter`, |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 428 | will 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 | |
| 446 | conflict_handler |
| 447 | ^^^^^^^^^^^^^^^^ |
| 448 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 449 | :class:`ArgumentParser` objects do not allow two actions with the same option |
| 450 | string. By default, :class:`ArgumentParser` objects raises an exception if an |
| 451 | attempt is made to create an argument with an option string that is already in |
| 452 | use:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 453 | |
| 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 | |
| 461 | Sometimes (e.g. when using parents_) it may be useful to simply override any |
| 462 | older arguments with the same option string. To get this behavior, the value |
| 463 | ``'resolve'`` can be supplied to the ``conflict_handler=`` argument of |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 464 | :class:`ArgumentParser`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 465 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 477 | Note that :class:`ArgumentParser` objects only remove an action if all of its |
| 478 | option strings are overridden. So, in the example above, the old ``-f/--foo`` |
| 479 | action is retained as the ``-f`` action, because only the ``--foo`` option |
| 480 | string was overridden. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 481 | |
| 482 | |
| 483 | prog |
| 484 | ^^^^ |
| 485 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 486 | By default, :class:`ArgumentParser` objects uses ``sys.argv[0]`` to determine |
| 487 | how to display the name of the program in help messages. This default is almost |
Ezio Melotti | f82340d | 2010-05-27 22:38:16 +0000 | [diff] [blame] | 488 | always desirable because it will make the help messages match how the program was |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 489 | invoked on the command line. For example, consider a file named |
| 490 | ``myprogram.py`` with the following code:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 491 | |
| 492 | import argparse |
| 493 | parser = argparse.ArgumentParser() |
| 494 | parser.add_argument('--foo', help='foo help') |
| 495 | args = parser.parse_args() |
| 496 | |
| 497 | The 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 | |
| 514 | To change this default behavior, another value can be supplied using the |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 515 | ``prog=`` argument to :class:`ArgumentParser`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 516 | |
| 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 | |
| 524 | Note 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 |
| 526 | specifier. |
| 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 | |
| 540 | usage |
| 541 | ^^^^^ |
| 542 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 543 | By default, :class:`ArgumentParser` calculates the usage message from the |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 544 | arguments 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 559 | The default message can be overridden with the ``usage=`` keyword argument:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 560 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 574 | The ``%(prog)s`` format specifier is available to fill in the program name in |
| 575 | your usage messages. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 576 | |
| 577 | |
| 578 | The add_argument() method |
| 579 | ------------------------- |
| 580 | |
Georg Brandl | c900708 | 2011-01-09 09:04:08 +0000 | [diff] [blame] | 581 | .. method:: ArgumentParser.add_argument(name or flags..., [action], [nargs], \ |
| 582 | [const], [default], [type], [choices], [required], \ |
| 583 | [help], [metavar], [dest]) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 584 | |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 585 | Define how a single command-line argument should be parsed. Each parameter |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 586 | 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 Melotti | dca309d | 2011-04-21 23:09:27 +0300 | [diff] [blame] | 589 | or ``-f, --foo``. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 590 | |
| 591 | * action_ - The basic type of action to be taken when this argument is |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 592 | encountered at the command line. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 593 | |
| 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 Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 599 | command line. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 600 | |
Ezio Melotti | 2409d77 | 2011-04-16 23:13:50 +0300 | [diff] [blame] | 601 | * type_ - The type to which the command-line argument should be converted. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 602 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 615 | The following sections describe how each of these are used. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 616 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 617 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 618 | name or flags |
| 619 | ^^^^^^^^^^^^^ |
| 620 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 621 | The :meth:`~ArgumentParser.add_argument` method must know whether an optional |
| 622 | argument, like ``-f`` or ``--foo``, or a positional argument, like a list of |
| 623 | filenames, is expected. The first arguments passed to |
| 624 | :meth:`~ArgumentParser.add_argument` must therefore be either a series of |
| 625 | flags, or a simple argument name. For example, an optional argument could |
| 626 | be created like:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 627 | |
| 628 | >>> parser.add_argument('-f', '--foo') |
| 629 | |
| 630 | while a positional argument could be created like:: |
| 631 | |
| 632 | >>> parser.add_argument('bar') |
| 633 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 634 | When :meth:`~ArgumentParser.parse_args` is called, optional arguments will be |
| 635 | identified by the ``-`` prefix, and the remaining arguments will be assumed to |
| 636 | be positional:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 637 | |
| 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 Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 649 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 650 | action |
| 651 | ^^^^^^ |
| 652 | |
| 653 | :class:`ArgumentParser` objects associate command-line args with actions. These |
| 654 | actions can do just about anything with the command-line args associated with |
| 655 | them, though most actions simply add an attribute to the object returned by |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 656 | :meth:`~ArgumentParser.parse_args`. The ``action`` keyword argument specifies |
| 657 | how the command-line args should be handled. The supported actions are: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 658 | |
| 659 | * ``'store'`` - This just stores the argument's value. This is the default |
Ezio Melotti | 2f1db7d | 2011-04-21 23:06:48 +0300 | [diff] [blame] | 660 | action. For example:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 661 | |
| 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 Melotti | 2f1db7d | 2011-04-21 23:06:48 +0300 | [diff] [blame] | 668 | 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 Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 671 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 678 | ``False`` respectively. These are special cases of ``'store_const'``. For |
| 679 | example:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 680 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 688 | list. This is useful to allow an option to be specified multiple times. |
| 689 | Example usage:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 690 | |
| 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 Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 697 | 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 Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 701 | |
| 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()) |
| 706 | Namespace(types=[<type 'str'>, <type 'int'>]) |
| 707 | |
| 708 | * ``'version'`` - This expects a ``version=`` keyword argument in the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 709 | :meth:`~ArgumentParser.add_argument` call, and prints version information |
| 710 | and exits when invoked. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 711 | |
| 712 | >>> import argparse |
| 713 | >>> parser = argparse.ArgumentParser(prog='PROG') |
Steven Bethard | 5971096 | 2010-05-24 03:21:08 +0000 | [diff] [blame] | 714 | >>> parser.add_argument('--version', action='version', version='%(prog)s 2.0') |
| 715 | >>> parser.parse_args(['--version']) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 716 | PROG 2.0 |
| 717 | |
| 718 | You can also specify an arbitrary action by passing an object that implements |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 719 | the Action API. The easiest way to do this is to extend |
| 720 | :class:`argparse.Action`, supplying an appropriate ``__call__`` method. The |
| 721 | ``__call__`` method should accept four parameters: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 722 | |
| 723 | * ``parser`` - The ArgumentParser object which contains this action. |
| 724 | |
| 725 | * ``namespace`` - The namespace object that will be returned by |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 726 | :meth:`~ArgumentParser.parse_args`. Most actions add an attribute to this |
| 727 | object. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 728 | |
| 729 | * ``values`` - The associated command-line args, with any type-conversions |
| 730 | applied. (Type-conversions are specified with the type_ keyword argument to |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 731 | :meth:`~ArgumentParser.add_argument`. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 732 | |
| 733 | * ``option_string`` - The option string that was used to invoke this action. |
| 734 | The ``option_string`` argument is optional, and will be absent if the action |
| 735 | is associated with a positional argument. |
| 736 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 737 | An example of a custom action:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 738 | |
| 739 | >>> class FooAction(argparse.Action): |
| 740 | ... def __call__(self, parser, namespace, values, option_string=None): |
Georg Brandl | 571a953 | 2010-07-26 17:00:20 +0000 | [diff] [blame] | 741 | ... print('%r %r %r' % (namespace, values, option_string)) |
| 742 | ... setattr(namespace, self.dest, values) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 743 | ... |
| 744 | >>> parser = argparse.ArgumentParser() |
| 745 | >>> parser.add_argument('--foo', action=FooAction) |
| 746 | >>> parser.add_argument('bar', action=FooAction) |
| 747 | >>> args = parser.parse_args('1 --foo 2'.split()) |
| 748 | Namespace(bar=None, foo=None) '1' None |
| 749 | Namespace(bar='1', foo=None) '2' '--foo' |
| 750 | >>> args |
| 751 | Namespace(bar='1', foo='2') |
| 752 | |
| 753 | |
| 754 | nargs |
| 755 | ^^^^^ |
| 756 | |
| 757 | ArgumentParser objects usually associate a single command-line argument with a |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 758 | single action to be taken. The ``nargs`` keyword argument associates a |
Ezio Melotti | 00f53af | 2011-04-21 22:56:51 +0300 | [diff] [blame] | 759 | different number of command-line arguments with a single action. The supported |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 760 | values are: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 761 | |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 762 | * N (an integer). N args from the command line will be gathered together into a |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 763 | list. For example:: |
| 764 | |
Georg Brandl | 682d7e0 | 2010-10-06 10:26:05 +0000 | [diff] [blame] | 765 | >>> parser = argparse.ArgumentParser() |
| 766 | >>> parser.add_argument('--foo', nargs=2) |
| 767 | >>> parser.add_argument('bar', nargs=1) |
| 768 | >>> parser.parse_args('c --foo a b'.split()) |
| 769 | Namespace(bar=['c'], foo=['a', 'b']) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 770 | |
Georg Brandl | 682d7e0 | 2010-10-06 10:26:05 +0000 | [diff] [blame] | 771 | Note that ``nargs=1`` produces a list of one item. This is different from |
| 772 | the default, in which the item is produced by itself. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 773 | |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 774 | * ``'?'``. One arg will be consumed from the command line if possible, and |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 775 | produced as a single item. If no command-line arg is present, the value from |
| 776 | default_ will be produced. Note that for optional arguments, there is an |
| 777 | additional case - the option string is present but not followed by a |
| 778 | command-line arg. In this case the value from const_ will be produced. Some |
| 779 | examples to illustrate this:: |
| 780 | |
| 781 | >>> parser = argparse.ArgumentParser() |
| 782 | >>> parser.add_argument('--foo', nargs='?', const='c', default='d') |
| 783 | >>> parser.add_argument('bar', nargs='?', default='d') |
| 784 | >>> parser.parse_args('XX --foo YY'.split()) |
| 785 | Namespace(bar='XX', foo='YY') |
| 786 | >>> parser.parse_args('XX --foo'.split()) |
| 787 | Namespace(bar='XX', foo='c') |
| 788 | >>> parser.parse_args(''.split()) |
| 789 | Namespace(bar='d', foo='d') |
| 790 | |
| 791 | One of the more common uses of ``nargs='?'`` is to allow optional input and |
| 792 | output files:: |
| 793 | |
| 794 | >>> parser = argparse.ArgumentParser() |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 795 | >>> parser.add_argument('infile', nargs='?', type=argparse.FileType('r'), |
| 796 | ... default=sys.stdin) |
| 797 | >>> parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'), |
| 798 | ... default=sys.stdout) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 799 | >>> parser.parse_args(['input.txt', 'output.txt']) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 800 | Namespace(infile=<_io.TextIOWrapper name='input.txt' encoding='UTF-8'>, |
| 801 | outfile=<_io.TextIOWrapper name='output.txt' encoding='UTF-8'>) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 802 | >>> parser.parse_args([]) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 803 | Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>, |
| 804 | outfile=<_io.TextIOWrapper name='<stdout>' encoding='UTF-8'>) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 805 | |
| 806 | * ``'*'``. All command-line args present are gathered into a list. Note that |
| 807 | it generally doesn't make much sense to have more than one positional argument |
| 808 | with ``nargs='*'``, but multiple optional arguments with ``nargs='*'`` is |
| 809 | possible. For example:: |
| 810 | |
| 811 | >>> parser = argparse.ArgumentParser() |
| 812 | >>> parser.add_argument('--foo', nargs='*') |
| 813 | >>> parser.add_argument('--bar', nargs='*') |
| 814 | >>> parser.add_argument('baz', nargs='*') |
| 815 | >>> parser.parse_args('a b --foo x y --bar 1 2'.split()) |
| 816 | Namespace(bar=['1', '2'], baz=['a', 'b'], foo=['x', 'y']) |
| 817 | |
| 818 | * ``'+'``. Just like ``'*'``, all command-line args present are gathered into a |
| 819 | list. Additionally, an error message will be generated if there wasn't at |
| 820 | least one command-line arg present. For example:: |
| 821 | |
| 822 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 823 | >>> parser.add_argument('foo', nargs='+') |
| 824 | >>> parser.parse_args('a b'.split()) |
| 825 | Namespace(foo=['a', 'b']) |
| 826 | >>> parser.parse_args(''.split()) |
| 827 | usage: PROG [-h] foo [foo ...] |
| 828 | PROG: error: too few arguments |
| 829 | |
| 830 | If the ``nargs`` keyword argument is not provided, the number of args consumed |
| 831 | is determined by the action_. Generally this means a single command-line arg |
| 832 | will be consumed and a single item (not a list) will be produced. |
| 833 | |
| 834 | |
| 835 | const |
| 836 | ^^^^^ |
| 837 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 838 | The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to hold |
| 839 | constant values that are not read from the command line but are required for |
| 840 | the various :class:`ArgumentParser` actions. The two most common uses of it are: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 841 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 842 | * When :meth:`~ArgumentParser.add_argument` is called with |
| 843 | ``action='store_const'`` or ``action='append_const'``. These actions add the |
| 844 | ``const`` value to one of the attributes of the object returned by :meth:`~ArgumentParser.parse_args`. See the action_ description for examples. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 845 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 846 | * When :meth:`~ArgumentParser.add_argument` is called with option strings |
| 847 | (like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional |
| 848 | argument that can be followed by zero or one command-line args. |
| 849 | When parsing the command line, if the option string is encountered with no |
| 850 | command-line arg following it, the value of ``const`` will be assumed instead. |
| 851 | See the nargs_ description for examples. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 852 | |
| 853 | The ``const`` keyword argument defaults to ``None``. |
| 854 | |
| 855 | |
| 856 | default |
| 857 | ^^^^^^^ |
| 858 | |
| 859 | All optional arguments and some positional arguments may be omitted at the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 860 | command line. The ``default`` keyword argument of |
| 861 | :meth:`~ArgumentParser.add_argument`, whose value defaults to ``None``, |
| 862 | specifies what value should be used if the command-line arg is not present. |
| 863 | For optional arguments, the ``default`` value is used when the option string |
| 864 | was not present at the command line:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 865 | |
| 866 | >>> parser = argparse.ArgumentParser() |
| 867 | >>> parser.add_argument('--foo', default=42) |
| 868 | >>> parser.parse_args('--foo 2'.split()) |
| 869 | Namespace(foo='2') |
| 870 | >>> parser.parse_args(''.split()) |
| 871 | Namespace(foo=42) |
| 872 | |
| 873 | For positional arguments with nargs_ ``='?'`` or ``'*'``, the ``default`` value |
| 874 | is used when no command-line arg was present:: |
| 875 | |
| 876 | >>> parser = argparse.ArgumentParser() |
| 877 | >>> parser.add_argument('foo', nargs='?', default=42) |
| 878 | >>> parser.parse_args('a'.split()) |
| 879 | Namespace(foo='a') |
| 880 | >>> parser.parse_args(''.split()) |
| 881 | Namespace(foo=42) |
| 882 | |
| 883 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 884 | Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the |
| 885 | command-line argument was not present.:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 886 | |
| 887 | >>> parser = argparse.ArgumentParser() |
| 888 | >>> parser.add_argument('--foo', default=argparse.SUPPRESS) |
| 889 | >>> parser.parse_args([]) |
| 890 | Namespace() |
| 891 | >>> parser.parse_args(['--foo', '1']) |
| 892 | Namespace(foo='1') |
| 893 | |
| 894 | |
| 895 | type |
| 896 | ^^^^ |
| 897 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 898 | By default, :class:`ArgumentParser` objects read command-line args in as simple |
| 899 | strings. However, quite often the command-line string should instead be |
| 900 | interpreted as another type, like a :class:`float` or :class:`int`. The |
| 901 | ``type`` keyword argument of :meth:`~ArgumentParser.add_argument` allows any |
| 902 | necessary type-checking and type-conversions to be performed. Common built-in |
| 903 | types and functions can be used directly as the value of the ``type`` argument:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 904 | |
| 905 | >>> parser = argparse.ArgumentParser() |
| 906 | >>> parser.add_argument('foo', type=int) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 907 | >>> parser.add_argument('bar', type=open) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 908 | >>> parser.parse_args('2 temp.txt'.split()) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 909 | Namespace(bar=<_io.TextIOWrapper name='temp.txt' encoding='UTF-8'>, foo=2) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 910 | |
| 911 | To ease the use of various types of files, the argparse module provides the |
| 912 | factory FileType which takes the ``mode=`` and ``bufsize=`` arguments of the |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 913 | :func:`open` function. For example, ``FileType('w')`` can be used to create a |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 914 | writable file:: |
| 915 | |
| 916 | >>> parser = argparse.ArgumentParser() |
| 917 | >>> parser.add_argument('bar', type=argparse.FileType('w')) |
| 918 | >>> parser.parse_args(['out.txt']) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 919 | Namespace(bar=<_io.TextIOWrapper name='out.txt' encoding='UTF-8'>) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 920 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 921 | ``type=`` can take any callable that takes a single string argument and returns |
| 922 | the type-converted value:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 923 | |
| 924 | >>> def perfect_square(string): |
| 925 | ... value = int(string) |
| 926 | ... sqrt = math.sqrt(value) |
| 927 | ... if sqrt != int(sqrt): |
| 928 | ... msg = "%r is not a perfect square" % string |
| 929 | ... raise argparse.ArgumentTypeError(msg) |
| 930 | ... return value |
| 931 | ... |
| 932 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 933 | >>> parser.add_argument('foo', type=perfect_square) |
| 934 | >>> parser.parse_args('9'.split()) |
| 935 | Namespace(foo=9) |
| 936 | >>> parser.parse_args('7'.split()) |
| 937 | usage: PROG [-h] foo |
| 938 | PROG: error: argument foo: '7' is not a perfect square |
| 939 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 940 | The choices_ keyword argument may be more convenient for type checkers that |
| 941 | simply check against a range of values:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 942 | |
| 943 | >>> parser = argparse.ArgumentParser(prog='PROG') |
Fred Drake | c7eb789 | 2011-03-03 05:29:59 +0000 | [diff] [blame] | 944 | >>> parser.add_argument('foo', type=int, choices=range(5, 10)) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 945 | >>> parser.parse_args('7'.split()) |
| 946 | Namespace(foo=7) |
| 947 | >>> parser.parse_args('11'.split()) |
| 948 | usage: PROG [-h] {5,6,7,8,9} |
| 949 | PROG: error: argument foo: invalid choice: 11 (choose from 5, 6, 7, 8, 9) |
| 950 | |
| 951 | See the choices_ section for more details. |
| 952 | |
| 953 | |
| 954 | choices |
| 955 | ^^^^^^^ |
| 956 | |
| 957 | Some command-line args should be selected from a restricted set of values. |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 958 | These can be handled by passing a container object as the ``choices`` keyword |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 959 | argument to :meth:`~ArgumentParser.add_argument`. When the command line is |
| 960 | parsed, arg values will be checked, and an error message will be displayed if |
| 961 | the arg was not one of the acceptable values:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 962 | |
| 963 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 964 | >>> parser.add_argument('foo', choices='abc') |
| 965 | >>> parser.parse_args('c'.split()) |
| 966 | Namespace(foo='c') |
| 967 | >>> parser.parse_args('X'.split()) |
| 968 | usage: PROG [-h] {a,b,c} |
| 969 | PROG: error: argument foo: invalid choice: 'X' (choose from 'a', 'b', 'c') |
| 970 | |
| 971 | Note that inclusion in the ``choices`` container is checked after any type_ |
| 972 | conversions have been performed, so the type of the objects in the ``choices`` |
| 973 | container should match the type_ specified:: |
| 974 | |
| 975 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 976 | >>> parser.add_argument('foo', type=complex, choices=[1, 1j]) |
| 977 | >>> parser.parse_args('1j'.split()) |
| 978 | Namespace(foo=1j) |
| 979 | >>> parser.parse_args('-- -4'.split()) |
| 980 | usage: PROG [-h] {1,1j} |
| 981 | PROG: error: argument foo: invalid choice: (-4+0j) (choose from 1, 1j) |
| 982 | |
| 983 | Any object that supports the ``in`` operator can be passed as the ``choices`` |
| 984 | value, so :class:`dict` objects, :class:`set` objects, custom containers, |
| 985 | etc. are all supported. |
| 986 | |
| 987 | |
| 988 | required |
| 989 | ^^^^^^^^ |
| 990 | |
Ezio Melotti | 0ee9c1b | 2011-04-21 16:12:17 +0300 | [diff] [blame] | 991 | In general, the :mod:`argparse` module assumes that flags like ``-f`` and ``--bar`` |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 992 | indicate *optional* arguments, which can always be omitted at the command line. |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 993 | To make an option *required*, ``True`` can be specified for the ``required=`` |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 994 | keyword argument to :meth:`~ArgumentParser.add_argument`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 995 | |
| 996 | >>> parser = argparse.ArgumentParser() |
| 997 | >>> parser.add_argument('--foo', required=True) |
| 998 | >>> parser.parse_args(['--foo', 'BAR']) |
| 999 | Namespace(foo='BAR') |
| 1000 | >>> parser.parse_args([]) |
| 1001 | usage: argparse.py [-h] [--foo FOO] |
| 1002 | argparse.py: error: option --foo is required |
| 1003 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1004 | As the example shows, if an option is marked as ``required``, |
| 1005 | :meth:`~ArgumentParser.parse_args` will report an error if that option is not |
| 1006 | present at the command line. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1007 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1008 | .. note:: |
| 1009 | |
| 1010 | Required options are generally considered bad form because users expect |
| 1011 | *options* to be *optional*, and thus they should be avoided when possible. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1012 | |
| 1013 | |
| 1014 | help |
| 1015 | ^^^^ |
| 1016 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1017 | The ``help`` value is a string containing a brief description of the argument. |
| 1018 | When a user requests help (usually by using ``-h`` or ``--help`` at the |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 1019 | command line), these ``help`` descriptions will be displayed with each |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1020 | argument:: |
| 1021 | |
| 1022 | >>> parser = argparse.ArgumentParser(prog='frobble') |
| 1023 | >>> parser.add_argument('--foo', action='store_true', |
| 1024 | ... help='foo the bars before frobbling') |
| 1025 | >>> parser.add_argument('bar', nargs='+', |
| 1026 | ... help='one of the bars to be frobbled') |
| 1027 | >>> parser.parse_args('-h'.split()) |
| 1028 | usage: frobble [-h] [--foo] bar [bar ...] |
| 1029 | |
| 1030 | positional arguments: |
| 1031 | bar one of the bars to be frobbled |
| 1032 | |
| 1033 | optional arguments: |
| 1034 | -h, --help show this help message and exit |
| 1035 | --foo foo the bars before frobbling |
| 1036 | |
| 1037 | The ``help`` strings can include various format specifiers to avoid repetition |
| 1038 | of things like the program name or the argument default_. The available |
| 1039 | specifiers include the program name, ``%(prog)s`` and most keyword arguments to |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1040 | :meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, ``%(type)s``, etc.:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1041 | |
| 1042 | >>> parser = argparse.ArgumentParser(prog='frobble') |
| 1043 | >>> parser.add_argument('bar', nargs='?', type=int, default=42, |
| 1044 | ... help='the bar to %(prog)s (default: %(default)s)') |
| 1045 | >>> parser.print_help() |
| 1046 | usage: frobble [-h] [bar] |
| 1047 | |
| 1048 | positional arguments: |
| 1049 | bar the bar to frobble (default: 42) |
| 1050 | |
| 1051 | optional arguments: |
| 1052 | -h, --help show this help message and exit |
| 1053 | |
| 1054 | |
| 1055 | metavar |
| 1056 | ^^^^^^^ |
| 1057 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1058 | When :class:`ArgumentParser` generates help messages, it need some way to refer |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1059 | to each expected argument. By default, ArgumentParser objects use the dest_ |
| 1060 | value as the "name" of each object. By default, for positional argument |
| 1061 | actions, the dest_ value is used directly, and for optional argument actions, |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1062 | the dest_ value is uppercased. So, a single positional argument with |
| 1063 | ``dest='bar'`` will that argument will be referred to as ``bar``. A single |
| 1064 | optional argument ``--foo`` that should be followed by a single command-line arg |
| 1065 | will be referred to as ``FOO``. An example:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1066 | |
| 1067 | >>> parser = argparse.ArgumentParser() |
| 1068 | >>> parser.add_argument('--foo') |
| 1069 | >>> parser.add_argument('bar') |
| 1070 | >>> parser.parse_args('X --foo Y'.split()) |
| 1071 | Namespace(bar='X', foo='Y') |
| 1072 | >>> parser.print_help() |
| 1073 | usage: [-h] [--foo FOO] bar |
| 1074 | |
| 1075 | positional arguments: |
| 1076 | bar |
| 1077 | |
| 1078 | optional arguments: |
| 1079 | -h, --help show this help message and exit |
| 1080 | --foo FOO |
| 1081 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1082 | An alternative name can be specified with ``metavar``:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1083 | |
| 1084 | >>> parser = argparse.ArgumentParser() |
| 1085 | >>> parser.add_argument('--foo', metavar='YYY') |
| 1086 | >>> parser.add_argument('bar', metavar='XXX') |
| 1087 | >>> parser.parse_args('X --foo Y'.split()) |
| 1088 | Namespace(bar='X', foo='Y') |
| 1089 | >>> parser.print_help() |
| 1090 | usage: [-h] [--foo YYY] XXX |
| 1091 | |
| 1092 | positional arguments: |
| 1093 | XXX |
| 1094 | |
| 1095 | optional arguments: |
| 1096 | -h, --help show this help message and exit |
| 1097 | --foo YYY |
| 1098 | |
| 1099 | Note that ``metavar`` only changes the *displayed* name - the name of the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1100 | attribute on the :meth:`~ArgumentParser.parse_args` object is still determined |
| 1101 | by the dest_ value. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1102 | |
| 1103 | Different values of ``nargs`` may cause the metavar to be used multiple times. |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1104 | Providing a tuple to ``metavar`` specifies a different display for each of the |
| 1105 | arguments:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1106 | |
| 1107 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1108 | >>> parser.add_argument('-x', nargs=2) |
| 1109 | >>> parser.add_argument('--foo', nargs=2, metavar=('bar', 'baz')) |
| 1110 | >>> parser.print_help() |
| 1111 | usage: PROG [-h] [-x X X] [--foo bar baz] |
| 1112 | |
| 1113 | optional arguments: |
| 1114 | -h, --help show this help message and exit |
| 1115 | -x X X |
| 1116 | --foo bar baz |
| 1117 | |
| 1118 | |
| 1119 | dest |
| 1120 | ^^^^ |
| 1121 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1122 | Most :class:`ArgumentParser` actions add some value as an attribute of the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1123 | object returned by :meth:`~ArgumentParser.parse_args`. The name of this |
| 1124 | attribute is determined by the ``dest`` keyword argument of |
| 1125 | :meth:`~ArgumentParser.add_argument`. For positional argument actions, |
| 1126 | ``dest`` is normally supplied as the first argument to |
| 1127 | :meth:`~ArgumentParser.add_argument`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1128 | |
| 1129 | >>> parser = argparse.ArgumentParser() |
| 1130 | >>> parser.add_argument('bar') |
| 1131 | >>> parser.parse_args('XXX'.split()) |
| 1132 | Namespace(bar='XXX') |
| 1133 | |
| 1134 | For optional argument actions, the value of ``dest`` is normally inferred from |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1135 | the option strings. :class:`ArgumentParser` generates the value of ``dest`` by |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1136 | taking the first long option string and stripping away the initial ``'--'`` |
| 1137 | string. If no long option strings were supplied, ``dest`` will be derived from |
| 1138 | the first short option string by stripping the initial ``'-'`` character. Any |
| 1139 | internal ``'-'`` characters will be converted to ``'_'`` characters to make sure |
| 1140 | the string is a valid attribute name. The examples below illustrate this |
| 1141 | behavior:: |
| 1142 | |
| 1143 | >>> parser = argparse.ArgumentParser() |
| 1144 | >>> parser.add_argument('-f', '--foo-bar', '--foo') |
| 1145 | >>> parser.add_argument('-x', '-y') |
| 1146 | >>> parser.parse_args('-f 1 -x 2'.split()) |
| 1147 | Namespace(foo_bar='1', x='2') |
| 1148 | >>> parser.parse_args('--foo 1 -y 2'.split()) |
| 1149 | Namespace(foo_bar='1', x='2') |
| 1150 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1151 | ``dest`` allows a custom attribute name to be provided:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1152 | |
| 1153 | >>> parser = argparse.ArgumentParser() |
| 1154 | >>> parser.add_argument('--foo', dest='bar') |
| 1155 | >>> parser.parse_args('--foo XXX'.split()) |
| 1156 | Namespace(bar='XXX') |
| 1157 | |
| 1158 | |
| 1159 | The parse_args() method |
| 1160 | ----------------------- |
| 1161 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1162 | .. method:: ArgumentParser.parse_args(args=None, namespace=None) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1163 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1164 | Convert argument strings to objects and assign them as attributes of the |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1165 | namespace. Return the populated namespace. |
| 1166 | |
| 1167 | Previous calls to :meth:`add_argument` determine exactly what objects are |
| 1168 | created and how they are assigned. See the documentation for |
| 1169 | :meth:`add_argument` for details. |
| 1170 | |
| 1171 | By default, the arg strings are taken from :data:`sys.argv`, and a new empty |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1172 | :class:`Namespace` object is created for the attributes. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1173 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1174 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1175 | Option value syntax |
| 1176 | ^^^^^^^^^^^^^^^^^^^ |
| 1177 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1178 | The :meth:`~ArgumentParser.parse_args` method supports several ways of |
| 1179 | specifying the value of an option (if it takes one). In the simplest case, the |
| 1180 | option and its value are passed as two separate arguments:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1181 | |
| 1182 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1183 | >>> parser.add_argument('-x') |
| 1184 | >>> parser.add_argument('--foo') |
| 1185 | >>> parser.parse_args('-x X'.split()) |
| 1186 | Namespace(foo=None, x='X') |
| 1187 | >>> parser.parse_args('--foo FOO'.split()) |
| 1188 | Namespace(foo='FOO', x=None) |
| 1189 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1190 | For long options (options with names longer than a single character), the option |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 1191 | and value can also be passed as a single command-line argument, using ``=`` to |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1192 | separate them:: |
| 1193 | |
| 1194 | >>> parser.parse_args('--foo=FOO'.split()) |
| 1195 | Namespace(foo='FOO', x=None) |
| 1196 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1197 | For short options (options only one character long), the option and its value |
| 1198 | can be concatenated:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1199 | |
| 1200 | >>> parser.parse_args('-xX'.split()) |
| 1201 | Namespace(foo=None, x='X') |
| 1202 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1203 | Several short options can be joined together, using only a single ``-`` prefix, |
| 1204 | as long as only the last option (or none of them) requires a value:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1205 | |
| 1206 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1207 | >>> parser.add_argument('-x', action='store_true') |
| 1208 | >>> parser.add_argument('-y', action='store_true') |
| 1209 | >>> parser.add_argument('-z') |
| 1210 | >>> parser.parse_args('-xyzZ'.split()) |
| 1211 | Namespace(x=True, y=True, z='Z') |
| 1212 | |
| 1213 | |
| 1214 | Invalid arguments |
| 1215 | ^^^^^^^^^^^^^^^^^ |
| 1216 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1217 | While parsing the command line, :meth:`~ArgumentParser.parse_args` checks for a |
| 1218 | variety of errors, including ambiguous options, invalid types, invalid options, |
| 1219 | wrong number of positional arguments, etc. When it encounters such an error, |
| 1220 | it exits and prints the error along with a usage message:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1221 | |
| 1222 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1223 | >>> parser.add_argument('--foo', type=int) |
| 1224 | >>> parser.add_argument('bar', nargs='?') |
| 1225 | |
| 1226 | >>> # invalid type |
| 1227 | >>> parser.parse_args(['--foo', 'spam']) |
| 1228 | usage: PROG [-h] [--foo FOO] [bar] |
| 1229 | PROG: error: argument --foo: invalid int value: 'spam' |
| 1230 | |
| 1231 | >>> # invalid option |
| 1232 | >>> parser.parse_args(['--bar']) |
| 1233 | usage: PROG [-h] [--foo FOO] [bar] |
| 1234 | PROG: error: no such option: --bar |
| 1235 | |
| 1236 | >>> # wrong number of arguments |
| 1237 | >>> parser.parse_args(['spam', 'badger']) |
| 1238 | usage: PROG [-h] [--foo FOO] [bar] |
| 1239 | PROG: error: extra arguments found: badger |
| 1240 | |
| 1241 | |
| 1242 | Arguments containing ``"-"`` |
| 1243 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1244 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1245 | The :meth:`~ArgumentParser.parse_args` method attempts to give errors whenever |
| 1246 | the user has clearly made a mistake, but some situations are inherently |
| 1247 | ambiguous. For example, the command-line arg ``'-1'`` could either be an |
| 1248 | attempt to specify an option or an attempt to provide a positional argument. |
| 1249 | The :meth:`~ArgumentParser.parse_args` method is cautious here: positional |
| 1250 | arguments may only begin with ``'-'`` if they look like negative numbers and |
| 1251 | there are no options in the parser that look like negative numbers:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1252 | |
| 1253 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1254 | >>> parser.add_argument('-x') |
| 1255 | >>> parser.add_argument('foo', nargs='?') |
| 1256 | |
| 1257 | >>> # no negative number options, so -1 is a positional argument |
| 1258 | >>> parser.parse_args(['-x', '-1']) |
| 1259 | Namespace(foo=None, x='-1') |
| 1260 | |
| 1261 | >>> # no negative number options, so -1 and -5 are positional arguments |
| 1262 | >>> parser.parse_args(['-x', '-1', '-5']) |
| 1263 | Namespace(foo='-5', x='-1') |
| 1264 | |
| 1265 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1266 | >>> parser.add_argument('-1', dest='one') |
| 1267 | >>> parser.add_argument('foo', nargs='?') |
| 1268 | |
| 1269 | >>> # negative number options present, so -1 is an option |
| 1270 | >>> parser.parse_args(['-1', 'X']) |
| 1271 | Namespace(foo=None, one='X') |
| 1272 | |
| 1273 | >>> # negative number options present, so -2 is an option |
| 1274 | >>> parser.parse_args(['-2']) |
| 1275 | usage: PROG [-h] [-1 ONE] [foo] |
| 1276 | PROG: error: no such option: -2 |
| 1277 | |
| 1278 | >>> # negative number options present, so both -1s are options |
| 1279 | >>> parser.parse_args(['-1', '-1']) |
| 1280 | usage: PROG [-h] [-1 ONE] [foo] |
| 1281 | PROG: error: argument -1: expected one argument |
| 1282 | |
| 1283 | If you have positional arguments that must begin with ``'-'`` and don't look |
| 1284 | like negative numbers, you can insert the pseudo-argument ``'--'`` which tells |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1285 | :meth:`~ArgumentParser.parse_args` that everything after that is a positional |
| 1286 | argument:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1287 | |
| 1288 | >>> parser.parse_args(['--', '-f']) |
| 1289 | Namespace(foo='-f', one=None) |
| 1290 | |
| 1291 | |
| 1292 | Argument abbreviations |
| 1293 | ^^^^^^^^^^^^^^^^^^^^^^ |
| 1294 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1295 | The :meth:`~ArgumentParser.parse_args` method allows long options to be |
| 1296 | abbreviated if the abbreviation is unambiguous:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1297 | |
| 1298 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1299 | >>> parser.add_argument('-bacon') |
| 1300 | >>> parser.add_argument('-badger') |
| 1301 | >>> parser.parse_args('-bac MMM'.split()) |
| 1302 | Namespace(bacon='MMM', badger=None) |
| 1303 | >>> parser.parse_args('-bad WOOD'.split()) |
| 1304 | Namespace(bacon=None, badger='WOOD') |
| 1305 | >>> parser.parse_args('-ba BA'.split()) |
| 1306 | usage: PROG [-h] [-bacon BACON] [-badger BADGER] |
| 1307 | PROG: error: ambiguous option: -ba could match -badger, -bacon |
| 1308 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1309 | An error is produced for arguments that could produce more than one options. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1310 | |
| 1311 | |
| 1312 | Beyond ``sys.argv`` |
| 1313 | ^^^^^^^^^^^^^^^^^^^ |
| 1314 | |
| 1315 | Sometimes it may be useful to have an ArgumentParser parse args other than those |
| 1316 | of :data:`sys.argv`. This can be accomplished by passing a list of strings to |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1317 | :meth:`~ArgumentParser.parse_args`. This is useful for testing at the |
| 1318 | interactive prompt:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1319 | |
| 1320 | >>> parser = argparse.ArgumentParser() |
| 1321 | >>> parser.add_argument( |
Fred Drake | c7eb789 | 2011-03-03 05:29:59 +0000 | [diff] [blame] | 1322 | ... 'integers', metavar='int', type=int, choices=range(10), |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1323 | ... nargs='+', help='an integer in the range 0..9') |
| 1324 | >>> parser.add_argument( |
| 1325 | ... '--sum', dest='accumulate', action='store_const', const=sum, |
| 1326 | ... default=max, help='sum the integers (default: find the max)') |
| 1327 | >>> parser.parse_args(['1', '2', '3', '4']) |
| 1328 | Namespace(accumulate=<built-in function max>, integers=[1, 2, 3, 4]) |
| 1329 | >>> parser.parse_args('1 2 3 4 --sum'.split()) |
| 1330 | Namespace(accumulate=<built-in function sum>, integers=[1, 2, 3, 4]) |
| 1331 | |
| 1332 | |
Steven Bethard | d8f2d50 | 2011-03-26 19:50:06 +0100 | [diff] [blame] | 1333 | The Namespace object |
| 1334 | ^^^^^^^^^^^^^^^^^^^^ |
| 1335 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1336 | By default, :meth:`~ArgumentParser.parse_args` will return a new object of type |
| 1337 | :class:`Namespace` where the necessary attributes have been set. This class is |
| 1338 | deliberately simple, just an :class:`object` subclass with a readable string |
| 1339 | representation. If you prefer to have dict-like view of the attributes, you |
| 1340 | can use the standard Python idiom via :func:`vars`:: |
Steven Bethard | d8f2d50 | 2011-03-26 19:50:06 +0100 | [diff] [blame] | 1341 | |
| 1342 | >>> parser = argparse.ArgumentParser() |
| 1343 | >>> parser.add_argument('--foo') |
| 1344 | >>> args = parser.parse_args(['--foo', 'BAR']) |
| 1345 | >>> vars(args) |
| 1346 | {'foo': 'BAR'} |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1347 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1348 | It may also be useful to have an :class:`ArgumentParser` assign attributes to an |
Steven Bethard | d8f2d50 | 2011-03-26 19:50:06 +0100 | [diff] [blame] | 1349 | already existing object, rather than a new :class:`Namespace` object. This can |
| 1350 | be achieved by specifying the ``namespace=`` keyword argument:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1351 | |
Éric Araujo | 28053fb | 2010-11-22 03:09:19 +0000 | [diff] [blame] | 1352 | >>> class C: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1353 | ... pass |
| 1354 | ... |
| 1355 | >>> c = C() |
| 1356 | >>> parser = argparse.ArgumentParser() |
| 1357 | >>> parser.add_argument('--foo') |
| 1358 | >>> parser.parse_args(args=['--foo', 'BAR'], namespace=c) |
| 1359 | >>> c.foo |
| 1360 | 'BAR' |
| 1361 | |
| 1362 | |
| 1363 | Other utilities |
| 1364 | --------------- |
| 1365 | |
| 1366 | Sub-commands |
| 1367 | ^^^^^^^^^^^^ |
| 1368 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1369 | .. method:: ArgumentParser.add_subparsers() |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1370 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1371 | Many programs split up their functionality into a number of sub-commands, |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1372 | for example, the ``svn`` program can invoke sub-commands like ``svn |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1373 | checkout``, ``svn update``, and ``svn commit``. Splitting up functionality |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1374 | this way can be a particularly good idea when a program performs several |
| 1375 | different functions which require different kinds of command-line arguments. |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1376 | :class:`ArgumentParser` supports the creation of such sub-commands with the |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1377 | :meth:`add_subparsers` method. The :meth:`add_subparsers` method is normally |
| 1378 | called with no arguments and returns an special action object. This object |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1379 | has a single method, :meth:`~ArgumentParser.add_parser`, which takes a |
| 1380 | command name and any :class:`ArgumentParser` constructor arguments, and |
| 1381 | returns an :class:`ArgumentParser` object that can be modified as usual. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1382 | |
| 1383 | Some example usage:: |
| 1384 | |
| 1385 | >>> # create the top-level parser |
| 1386 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1387 | >>> parser.add_argument('--foo', action='store_true', help='foo help') |
| 1388 | >>> subparsers = parser.add_subparsers(help='sub-command help') |
| 1389 | >>> |
| 1390 | >>> # create the parser for the "a" command |
| 1391 | >>> parser_a = subparsers.add_parser('a', help='a help') |
| 1392 | >>> parser_a.add_argument('bar', type=int, help='bar help') |
| 1393 | >>> |
| 1394 | >>> # create the parser for the "b" command |
| 1395 | >>> parser_b = subparsers.add_parser('b', help='b help') |
| 1396 | >>> parser_b.add_argument('--baz', choices='XYZ', help='baz help') |
| 1397 | >>> |
| 1398 | >>> # parse some arg lists |
| 1399 | >>> parser.parse_args(['a', '12']) |
| 1400 | Namespace(bar=12, foo=False) |
| 1401 | >>> parser.parse_args(['--foo', 'b', '--baz', 'Z']) |
| 1402 | Namespace(baz='Z', foo=True) |
| 1403 | |
| 1404 | Note that the object returned by :meth:`parse_args` will only contain |
| 1405 | attributes for the main parser and the subparser that was selected by the |
| 1406 | command line (and not any other subparsers). So in the example above, when |
| 1407 | the ``"a"`` command is specified, only the ``foo`` and ``bar`` attributes are |
| 1408 | present, and when the ``"b"`` command is specified, only the ``foo`` and |
| 1409 | ``baz`` attributes are present. |
| 1410 | |
| 1411 | Similarly, when a help message is requested from a subparser, only the help |
| 1412 | for that particular parser will be printed. The help message will not |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1413 | include parent parser or sibling parser messages. (A help message for each |
| 1414 | subparser command, however, can be given by supplying the ``help=`` argument |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1415 | to :meth:`add_parser` as above.) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1416 | |
| 1417 | :: |
| 1418 | |
| 1419 | >>> parser.parse_args(['--help']) |
| 1420 | usage: PROG [-h] [--foo] {a,b} ... |
| 1421 | |
| 1422 | positional arguments: |
| 1423 | {a,b} sub-command help |
| 1424 | a a help |
| 1425 | b b help |
| 1426 | |
| 1427 | optional arguments: |
| 1428 | -h, --help show this help message and exit |
| 1429 | --foo foo help |
| 1430 | |
| 1431 | >>> parser.parse_args(['a', '--help']) |
| 1432 | usage: PROG a [-h] bar |
| 1433 | |
| 1434 | positional arguments: |
| 1435 | bar bar help |
| 1436 | |
| 1437 | optional arguments: |
| 1438 | -h, --help show this help message and exit |
| 1439 | |
| 1440 | >>> parser.parse_args(['b', '--help']) |
| 1441 | usage: PROG b [-h] [--baz {X,Y,Z}] |
| 1442 | |
| 1443 | optional arguments: |
| 1444 | -h, --help show this help message and exit |
| 1445 | --baz {X,Y,Z} baz help |
| 1446 | |
| 1447 | The :meth:`add_subparsers` method also supports ``title`` and ``description`` |
| 1448 | keyword arguments. When either is present, the subparser's commands will |
| 1449 | appear in their own group in the help output. For example:: |
| 1450 | |
| 1451 | >>> parser = argparse.ArgumentParser() |
| 1452 | >>> subparsers = parser.add_subparsers(title='subcommands', |
| 1453 | ... description='valid subcommands', |
| 1454 | ... help='additional help') |
| 1455 | >>> subparsers.add_parser('foo') |
| 1456 | >>> subparsers.add_parser('bar') |
| 1457 | >>> parser.parse_args(['-h']) |
| 1458 | usage: [-h] {foo,bar} ... |
| 1459 | |
| 1460 | optional arguments: |
| 1461 | -h, --help show this help message and exit |
| 1462 | |
| 1463 | subcommands: |
| 1464 | valid subcommands |
| 1465 | |
| 1466 | {foo,bar} additional help |
| 1467 | |
Steven Bethard | fd311a7 | 2010-12-18 11:19:23 +0000 | [diff] [blame] | 1468 | Furthermore, ``add_parser`` supports an additional ``aliases`` argument, |
| 1469 | which allows multiple strings to refer to the same subparser. This example, |
| 1470 | like ``svn``, aliases ``co`` as a shorthand for ``checkout``:: |
| 1471 | |
| 1472 | >>> parser = argparse.ArgumentParser() |
| 1473 | >>> subparsers = parser.add_subparsers() |
| 1474 | >>> checkout = subparsers.add_parser('checkout', aliases=['co']) |
| 1475 | >>> checkout.add_argument('foo') |
| 1476 | >>> parser.parse_args(['co', 'bar']) |
| 1477 | Namespace(foo='bar') |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1478 | |
| 1479 | One particularly effective way of handling sub-commands is to combine the use |
| 1480 | of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` so |
| 1481 | that each subparser knows which Python function it should execute. For |
| 1482 | example:: |
| 1483 | |
| 1484 | >>> # sub-command functions |
| 1485 | >>> def foo(args): |
Benjamin Peterson | b2deb11 | 2010-03-03 02:09:18 +0000 | [diff] [blame] | 1486 | ... print(args.x * args.y) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1487 | ... |
| 1488 | >>> def bar(args): |
Benjamin Peterson | b2deb11 | 2010-03-03 02:09:18 +0000 | [diff] [blame] | 1489 | ... print('((%s))' % args.z) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1490 | ... |
| 1491 | >>> # create the top-level parser |
| 1492 | >>> parser = argparse.ArgumentParser() |
| 1493 | >>> subparsers = parser.add_subparsers() |
| 1494 | >>> |
| 1495 | >>> # create the parser for the "foo" command |
| 1496 | >>> parser_foo = subparsers.add_parser('foo') |
| 1497 | >>> parser_foo.add_argument('-x', type=int, default=1) |
| 1498 | >>> parser_foo.add_argument('y', type=float) |
| 1499 | >>> parser_foo.set_defaults(func=foo) |
| 1500 | >>> |
| 1501 | >>> # create the parser for the "bar" command |
| 1502 | >>> parser_bar = subparsers.add_parser('bar') |
| 1503 | >>> parser_bar.add_argument('z') |
| 1504 | >>> parser_bar.set_defaults(func=bar) |
| 1505 | >>> |
| 1506 | >>> # parse the args and call whatever function was selected |
| 1507 | >>> args = parser.parse_args('foo 1 -x 2'.split()) |
| 1508 | >>> args.func(args) |
| 1509 | 2.0 |
| 1510 | >>> |
| 1511 | >>> # parse the args and call whatever function was selected |
| 1512 | >>> args = parser.parse_args('bar XYZYX'.split()) |
| 1513 | >>> args.func(args) |
| 1514 | ((XYZYX)) |
| 1515 | |
Steven Bethard | fd311a7 | 2010-12-18 11:19:23 +0000 | [diff] [blame] | 1516 | This way, you can let :meth:`parse_args` do the job of calling the |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1517 | appropriate function after argument parsing is complete. Associating |
| 1518 | functions with actions like this is typically the easiest way to handle the |
| 1519 | different actions for each of your subparsers. However, if it is necessary |
| 1520 | to check the name of the subparser that was invoked, the ``dest`` keyword |
| 1521 | argument to the :meth:`add_subparsers` call will work:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1522 | |
| 1523 | >>> parser = argparse.ArgumentParser() |
| 1524 | >>> subparsers = parser.add_subparsers(dest='subparser_name') |
| 1525 | >>> subparser1 = subparsers.add_parser('1') |
| 1526 | >>> subparser1.add_argument('-x') |
| 1527 | >>> subparser2 = subparsers.add_parser('2') |
| 1528 | >>> subparser2.add_argument('y') |
| 1529 | >>> parser.parse_args(['2', 'frobble']) |
| 1530 | Namespace(subparser_name='2', y='frobble') |
| 1531 | |
| 1532 | |
| 1533 | FileType objects |
| 1534 | ^^^^^^^^^^^^^^^^ |
| 1535 | |
| 1536 | .. class:: FileType(mode='r', bufsize=None) |
| 1537 | |
| 1538 | The :class:`FileType` factory creates objects that can be passed to the type |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1539 | argument of :meth:`ArgumentParser.add_argument`. Arguments that have |
| 1540 | :class:`FileType` objects as their type will open command-line args as files |
| 1541 | with the requested modes and buffer sizes: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1542 | |
| 1543 | >>> parser = argparse.ArgumentParser() |
| 1544 | >>> parser.add_argument('--output', type=argparse.FileType('wb', 0)) |
| 1545 | >>> parser.parse_args(['--output', 'out']) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 1546 | Namespace(output=<_io.BufferedWriter name='out'>) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1547 | |
| 1548 | FileType objects understand the pseudo-argument ``'-'`` and automatically |
| 1549 | convert this into ``sys.stdin`` for readable :class:`FileType` objects and |
| 1550 | ``sys.stdout`` for writable :class:`FileType` objects: |
| 1551 | |
| 1552 | >>> parser = argparse.ArgumentParser() |
| 1553 | >>> parser.add_argument('infile', type=argparse.FileType('r')) |
| 1554 | >>> parser.parse_args(['-']) |
Georg Brandl | 04536b0 | 2011-01-09 09:31:01 +0000 | [diff] [blame] | 1555 | Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1556 | |
| 1557 | |
| 1558 | Argument groups |
| 1559 | ^^^^^^^^^^^^^^^ |
| 1560 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1561 | .. method:: ArgumentParser.add_argument_group(title=None, description=None) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1562 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1563 | By default, :class:`ArgumentParser` groups command-line arguments into |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1564 | "positional arguments" and "optional arguments" when displaying help |
| 1565 | messages. When there is a better conceptual grouping of arguments than this |
| 1566 | default one, appropriate groups can be created using the |
| 1567 | :meth:`add_argument_group` method:: |
| 1568 | |
| 1569 | >>> parser = argparse.ArgumentParser(prog='PROG', add_help=False) |
| 1570 | >>> group = parser.add_argument_group('group') |
| 1571 | >>> group.add_argument('--foo', help='foo help') |
| 1572 | >>> group.add_argument('bar', help='bar help') |
| 1573 | >>> parser.print_help() |
| 1574 | usage: PROG [--foo FOO] bar |
| 1575 | |
| 1576 | group: |
| 1577 | bar bar help |
| 1578 | --foo FOO foo help |
| 1579 | |
| 1580 | The :meth:`add_argument_group` method returns an argument group object which |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1581 | has an :meth:`~ArgumentParser.add_argument` method just like a regular |
| 1582 | :class:`ArgumentParser`. When an argument is added to the group, the parser |
| 1583 | treats it just like a normal argument, but displays the argument in a |
| 1584 | separate group for help messages. The :meth:`add_argument_group` method |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1585 | accepts *title* and *description* arguments which can be used to |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1586 | customize this display:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1587 | |
| 1588 | >>> parser = argparse.ArgumentParser(prog='PROG', add_help=False) |
| 1589 | >>> group1 = parser.add_argument_group('group1', 'group1 description') |
| 1590 | >>> group1.add_argument('foo', help='foo help') |
| 1591 | >>> group2 = parser.add_argument_group('group2', 'group2 description') |
| 1592 | >>> group2.add_argument('--bar', help='bar help') |
| 1593 | >>> parser.print_help() |
| 1594 | usage: PROG [--bar BAR] foo |
| 1595 | |
| 1596 | group1: |
| 1597 | group1 description |
| 1598 | |
| 1599 | foo foo help |
| 1600 | |
| 1601 | group2: |
| 1602 | group2 description |
| 1603 | |
| 1604 | --bar BAR bar help |
| 1605 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1606 | Note that any arguments not your user defined groups will end up back in the |
| 1607 | usual "positional arguments" and "optional arguments" sections. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1608 | |
| 1609 | |
| 1610 | Mutual exclusion |
| 1611 | ^^^^^^^^^^^^^^^^ |
| 1612 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1613 | .. method:: add_mutually_exclusive_group(required=False) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1614 | |
Ezio Melotti | 0ee9c1b | 2011-04-21 16:12:17 +0300 | [diff] [blame] | 1615 | Create a mutually exclusive group. :mod:`argparse` will make sure that only |
| 1616 | one of the arguments in the mutually exclusive group was present on the |
| 1617 | command line:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1618 | |
| 1619 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1620 | >>> group = parser.add_mutually_exclusive_group() |
| 1621 | >>> group.add_argument('--foo', action='store_true') |
| 1622 | >>> group.add_argument('--bar', action='store_false') |
| 1623 | >>> parser.parse_args(['--foo']) |
| 1624 | Namespace(bar=True, foo=True) |
| 1625 | >>> parser.parse_args(['--bar']) |
| 1626 | Namespace(bar=False, foo=False) |
| 1627 | >>> parser.parse_args(['--foo', '--bar']) |
| 1628 | usage: PROG [-h] [--foo | --bar] |
| 1629 | PROG: error: argument --bar: not allowed with argument --foo |
| 1630 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1631 | The :meth:`add_mutually_exclusive_group` method also accepts a *required* |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1632 | argument, to indicate that at least one of the mutually exclusive arguments |
| 1633 | is required:: |
| 1634 | |
| 1635 | >>> parser = argparse.ArgumentParser(prog='PROG') |
| 1636 | >>> group = parser.add_mutually_exclusive_group(required=True) |
| 1637 | >>> group.add_argument('--foo', action='store_true') |
| 1638 | >>> group.add_argument('--bar', action='store_false') |
| 1639 | >>> parser.parse_args([]) |
| 1640 | usage: PROG [-h] (--foo | --bar) |
| 1641 | PROG: error: one of the arguments --foo --bar is required |
| 1642 | |
| 1643 | Note that currently mutually exclusive argument groups do not support the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1644 | *title* and *description* arguments of |
| 1645 | :meth:`~ArgumentParser.add_argument_group`. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1646 | |
| 1647 | |
| 1648 | Parser defaults |
| 1649 | ^^^^^^^^^^^^^^^ |
| 1650 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1651 | .. method:: ArgumentParser.set_defaults(**kwargs) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1652 | |
| 1653 | Most of the time, the attributes of the object returned by :meth:`parse_args` |
| 1654 | will be fully determined by inspecting the command-line args and the argument |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1655 | actions. :meth:`set_defaults` allows some additional |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 1656 | attributes that are determined without any inspection of the command line to |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1657 | be added:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1658 | |
| 1659 | >>> parser = argparse.ArgumentParser() |
| 1660 | >>> parser.add_argument('foo', type=int) |
| 1661 | >>> parser.set_defaults(bar=42, baz='badger') |
| 1662 | >>> parser.parse_args(['736']) |
| 1663 | Namespace(bar=42, baz='badger', foo=736) |
| 1664 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1665 | Note that parser-level defaults always override argument-level defaults:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1666 | |
| 1667 | >>> parser = argparse.ArgumentParser() |
| 1668 | >>> parser.add_argument('--foo', default='bar') |
| 1669 | >>> parser.set_defaults(foo='spam') |
| 1670 | >>> parser.parse_args([]) |
| 1671 | Namespace(foo='spam') |
| 1672 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1673 | Parser-level defaults can be particularly useful when working with multiple |
| 1674 | parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an |
| 1675 | example of this type. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1676 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1677 | .. method:: ArgumentParser.get_default(dest) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1678 | |
| 1679 | Get the default value for a namespace attribute, as set by either |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1680 | :meth:`~ArgumentParser.add_argument` or by |
| 1681 | :meth:`~ArgumentParser.set_defaults`:: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1682 | |
| 1683 | >>> parser = argparse.ArgumentParser() |
| 1684 | >>> parser.add_argument('--foo', default='badger') |
| 1685 | >>> parser.get_default('foo') |
| 1686 | 'badger' |
| 1687 | |
| 1688 | |
| 1689 | Printing help |
| 1690 | ^^^^^^^^^^^^^ |
| 1691 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1692 | In most typical applications, :meth:`~ArgumentParser.parse_args` will take |
| 1693 | care of formatting and printing any usage or error messages. However, several |
| 1694 | formatting methods are available: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1695 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1696 | .. method:: ArgumentParser.print_usage(file=None) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1697 | |
| 1698 | Print a brief description of how the :class:`ArgumentParser` should be |
R. David Murray | 32e1771 | 2010-12-18 16:39:06 +0000 | [diff] [blame] | 1699 | invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1700 | assumed. |
| 1701 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1702 | .. method:: ArgumentParser.print_help(file=None) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1703 | |
| 1704 | Print a help message, including the program usage and information about the |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1705 | arguments registered with the :class:`ArgumentParser`. If *file* is |
R. David Murray | 32e1771 | 2010-12-18 16:39:06 +0000 | [diff] [blame] | 1706 | ``None``, :data:`sys.stdout` is assumed. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1707 | |
| 1708 | There are also variants of these methods that simply return a string instead of |
| 1709 | printing it: |
| 1710 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1711 | .. method:: ArgumentParser.format_usage() |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1712 | |
| 1713 | Return a string containing a brief description of how the |
| 1714 | :class:`ArgumentParser` should be invoked on the command line. |
| 1715 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1716 | .. method:: ArgumentParser.format_help() |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1717 | |
| 1718 | Return a string containing a help message, including the program usage and |
| 1719 | information about the arguments registered with the :class:`ArgumentParser`. |
| 1720 | |
| 1721 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1722 | Partial parsing |
| 1723 | ^^^^^^^^^^^^^^^ |
| 1724 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1725 | .. method:: ArgumentParser.parse_known_args(args=None, namespace=None) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1726 | |
Georg Brandl | 1d827ff | 2011-04-16 16:44:54 +0200 | [diff] [blame] | 1727 | Sometimes a script may only parse a few of the command-line arguments, passing |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1728 | the remaining arguments on to another script or program. In these cases, the |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1729 | :meth:`~ArgumentParser.parse_known_args` method can be useful. It works much like |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1730 | :meth:`~ArgumentParser.parse_args` except that it does not produce an error when |
| 1731 | extra arguments are present. Instead, it returns a two item tuple containing |
| 1732 | the populated namespace and the list of remaining argument strings. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1733 | |
| 1734 | :: |
| 1735 | |
| 1736 | >>> parser = argparse.ArgumentParser() |
| 1737 | >>> parser.add_argument('--foo', action='store_true') |
| 1738 | >>> parser.add_argument('bar') |
| 1739 | >>> parser.parse_known_args(['--foo', '--badger', 'BAR', 'spam']) |
| 1740 | (Namespace(bar='BAR', foo=True), ['--badger', 'spam']) |
| 1741 | |
| 1742 | |
| 1743 | Customizing file parsing |
| 1744 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1745 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1746 | .. method:: ArgumentParser.convert_arg_line_to_args(arg_line) |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1747 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1748 | Arguments that are read from a file (see the *fromfile_prefix_chars* |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1749 | keyword argument to the :class:`ArgumentParser` constructor) are read one |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1750 | argument per line. :meth:`convert_arg_line_to_args` can be overriden for |
| 1751 | fancier reading. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1752 | |
Georg Brandl | e0bf91d | 2010-10-17 10:34:28 +0000 | [diff] [blame] | 1753 | This method takes a single argument *arg_line* which is a string read from |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1754 | the argument file. It returns a list of arguments parsed from this string. |
| 1755 | The method is called once per line read from the argument file, in order. |
| 1756 | |
| 1757 | A useful override of this method is one that treats each space-separated word |
| 1758 | as an argument:: |
| 1759 | |
| 1760 | def convert_arg_line_to_args(self, arg_line): |
| 1761 | for arg in arg_line.split(): |
| 1762 | if not arg.strip(): |
| 1763 | continue |
| 1764 | yield arg |
| 1765 | |
| 1766 | |
Georg Brandl | 9375492 | 2010-10-17 10:28:04 +0000 | [diff] [blame] | 1767 | Exiting methods |
| 1768 | ^^^^^^^^^^^^^^^ |
| 1769 | |
| 1770 | .. method:: ArgumentParser.exit(status=0, message=None) |
| 1771 | |
| 1772 | This method terminates the program, exiting with the specified *status* |
| 1773 | and, if given, it prints a *message* before that. |
| 1774 | |
| 1775 | .. method:: ArgumentParser.error(message) |
| 1776 | |
| 1777 | This method prints a usage message including the *message* to the |
| 1778 | standard output and terminates the program with a status code of 2. |
| 1779 | |
Raymond Hettinger | 677e10a | 2010-12-07 06:45:30 +0000 | [diff] [blame] | 1780 | .. _upgrading-optparse-code: |
Georg Brandl | 9375492 | 2010-10-17 10:28:04 +0000 | [diff] [blame] | 1781 | |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1782 | Upgrading optparse code |
| 1783 | ----------------------- |
| 1784 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1785 | Originally, the :mod:`argparse` module had attempted to maintain compatibility |
Ezio Melotti | 0ee9c1b | 2011-04-21 16:12:17 +0300 | [diff] [blame] | 1786 | with :mod:`optparse`. However, :mod:`optparse` was difficult to extend |
| 1787 | transparently, particularly with the changes required to support the new |
| 1788 | ``nargs=`` specifiers and better usage messages. When most everything in |
| 1789 | :mod:`optparse` had either been copy-pasted over or monkey-patched, it no |
| 1790 | longer seemed practical to try to maintain the backwards compatibility. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1791 | |
Ezio Melotti | 0ee9c1b | 2011-04-21 16:12:17 +0300 | [diff] [blame] | 1792 | A partial upgrade path from :mod:`optparse` to :mod:`argparse`: |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1793 | |
Ezio Melotti | 5569e9b | 2011-04-22 01:42:10 +0300 | [diff] [blame] | 1794 | * Replace all :meth:`optparse.OptionParser.add_option` calls with |
| 1795 | :meth:`ArgumentParser.add_argument` calls. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1796 | |
| 1797 | * Replace ``options, args = parser.parse_args()`` with ``args = |
Georg Brandl | c900708 | 2011-01-09 09:04:08 +0000 | [diff] [blame] | 1798 | parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument` |
| 1799 | calls for the positional arguments. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1800 | |
| 1801 | * Replace callback actions and the ``callback_*`` keyword arguments with |
| 1802 | ``type`` or ``action`` arguments. |
| 1803 | |
| 1804 | * Replace string names for ``type`` keyword arguments with the corresponding |
| 1805 | type objects (e.g. int, float, complex, etc). |
| 1806 | |
Benjamin Peterson | 98047eb | 2010-03-03 02:07:08 +0000 | [diff] [blame] | 1807 | * Replace :class:`optparse.Values` with :class:`Namespace` and |
| 1808 | :exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` with |
| 1809 | :exc:`ArgumentError`. |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1810 | |
| 1811 | * Replace strings with implicit arguments such as ``%default`` or ``%prog`` with |
Ezio Melotti | cca4ef8 | 2011-04-21 15:26:46 +0300 | [diff] [blame] | 1812 | the standard Python syntax to use dictionaries to format strings, that is, |
Benjamin Peterson | 698a18a | 2010-03-02 22:34:37 +0000 | [diff] [blame] | 1813 | ``%(default)s`` and ``%(prog)s``. |
Steven Bethard | 5971096 | 2010-05-24 03:21:08 +0000 | [diff] [blame] | 1814 | |
| 1815 | * Replace the OptionParser constructor ``version`` argument with a call to |
| 1816 | ``parser.add_argument('--version', action='version', version='<the version>')`` |