external.argparse

Module: external.argparse

Inheritance diagram for IPython.external.argparse:

Command-line parsing library

This module is an optparse-inspired command-line parsing library that:

  • handles both optional and positional arguments
  • produces highly informative usage messages
  • supports parsers that dispatch to sub-parsers

The following is a simple usage example that sums integers from the command-line and writes the result to a file:

parser = argparse.ArgumentParser(
    description='sum the integers at the command line')
parser.add_argument(
    'integers', metavar='int', nargs='+', type=int,
    help='an integer to be summed')
parser.add_argument(
    '--log', default=sys.stdout, type=argparse.FileType('w'),
    help='the file where the sum should be written')
args = parser.parse_args()
args.log.write('%s' % sum(args.integers))
args.log.close()

The module contains the following public classes:

  • ArgumentParser – The main entry point for command-line parsing. As the

    example above shows, the add_argument() method is used to populate the parser with actions for optional and positional arguments. Then the parse_args() method is invoked to convert the args at the command-line into an object with attributes.

  • ArgumentError – The exception raised by ArgumentParser objects when

    there are errors with the parser’s actions. Errors raised while parsing the command-line are caught by ArgumentParser and emitted as command-line messages.

  • FileType – A factory for defining types of files to be created. As the

    example above shows, instances of FileType are typically passed as the type= argument of add_argument() calls.

  • Action – The base class for parser actions. Typically actions are

    selected by passing strings like ‘store_true’ or ‘append_const’ to the action= argument of add_argument(). However, for greater customization of ArgumentParser actions, subclasses of Action may be defined and passed as the action= argument.

  • HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,

    ArgumentDefaultsHelpFormatter – Formatter classes which may be passed as the formatter_class= argument to the ArgumentParser constructor. HelpFormatter is the default, RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser not to change the formatting for help text, and ArgumentDefaultsHelpFormatter adds information about argument defaults to the help.

All other classes in this module are considered implementation details. (Also note that HelpFormatter and RawDescriptionHelpFormatter are only considered public as object names – the API of the formatter objects is still considered an implementation detail.)

Classes

Action

class IPython.external.argparse.Action(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)

Bases: IPython.external.argparse._AttributeHolder

Information about how to convert command line strings to Python objects.

Action objects are used by an ArgumentParser to represent the information needed to parse a single argument from one or more strings from the command line. The keyword arguments to the Action constructor are also all attributes of Action instances.

Keyword Arguments:

  • option_strings – A list of command-line option strings which

    should be associated with this action.

  • dest – The name of the attribute to hold the created object(s)

  • nargs – The number of command-line arguments that should be

    consumed. By default, one argument will be consumed and a single value will be produced. Other values include:

    • N (an integer) consumes N arguments (and produces a list)
    • ‘?’ consumes zero or one arguments
    • ‘*’ consumes zero or more arguments (and produces a list)
    • ‘+’ consumes one or more arguments (and produces a list)

    Note that the difference between the default and nargs=1 is that with the default, a single value will be produced, while with nargs=1, a list containing a single value will be produced.

  • const – The value to be produced if the option is specified and the

    option uses an action that takes no values.

  • default – The value to be produced if the option is not specified.

  • type – The type which the command-line arguments should be converted

    to, should be one of ‘string’, ‘int’, ‘float’, ‘complex’ or a callable object that accepts a single string argument. If None, ‘string’ is assumed.

  • choices – A container of values that should be allowed. If not None,

    after a command-line argument has been converted to the appropriate type, an exception will be raised if it is not a member of this collection.

  • required – True if the action must always be specified at the

    command line. This is only meaningful for optional command-line arguments.

  • help – The help string describing the argument.

  • metavar – The name to be used for the option’s argument with the

    help string. If None, the ‘dest’ value will be used as the name.

__init__(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)

ArgumentDefaultsHelpFormatter

class IPython.external.argparse.ArgumentDefaultsHelpFormatter(prog, indent_increment=2, max_help_position=24, width=None)

Bases: IPython.external.argparse.HelpFormatter

Help message formatter which adds default values to argument help.

Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.

__init__(prog, indent_increment=2, max_help_position=24, width=None)

ArgumentError

class IPython.external.argparse.ArgumentError(argument, message)

Bases: exceptions.Exception

An error from creating or using an argument (optional or positional).

The string value of this exception is the message, augmented with information about the argument that caused it.

__init__(argument, message)

ArgumentParser

class IPython.external.argparse.ArgumentParser(prog=None, usage=None, description=None, epilog=None, version=None, parents=[], formatter_class=<class 'IPython.external.argparse.HelpFormatter'>, prefix_chars='-', fromfile_prefix_chars=None, argument_default=None, conflict_handler='error', add_help=True)

Bases: IPython.external.argparse._AttributeHolder, IPython.external.argparse._ActionsContainer

Object for parsing command line strings into Python objects.

Keyword Arguments:
  • prog – The name of the program (default: sys.argv[0])

  • usage – A usage message (default: auto-generated from arguments)

  • description – A description of what the program does

  • epilog – Text following the argument descriptions

  • version – Add a -v/–version option with the given version string

  • parents – Parsers whose arguments should be copied into this one

  • formatter_class – HelpFormatter class for printing help messages

  • prefix_chars – Characters that prefix optional arguments

  • fromfile_prefix_chars – Characters that prefix files containing

    additional arguments

  • argument_default – The default value for all arguments

  • conflict_handler – String indicating how to handle conflicts

  • add_help – Add a -h/-help option

__init__(prog=None, usage=None, description=None, epilog=None, version=None, parents=[], formatter_class=<class 'IPython.external.argparse.HelpFormatter'>, prefix_chars='-', fromfile_prefix_chars=None, argument_default=None, conflict_handler='error', add_help=True)
add_subparsers(**kwargs)
error(message: string)

Prints a usage message incorporating the message to stderr and exits.

If you override this in a subclass, it should not return – it should either exit or raise an exception.

exit(status=0, message=None)
format_help()
format_usage()
format_version()
parse_args(args=None, namespace=None)
parse_known_args(args=None, namespace=None)
print_help(file=None)
print_usage(file=None)
print_version(file=None)

FileType

class IPython.external.argparse.FileType(mode='r', bufsize=None)

Bases: object

Factory for creating file object types

Instances of FileType are typically passed as type= arguments to the ArgumentParser add_argument() method.

Keyword Arguments:
  • mode – A string indicating how the file is to be opened. Accepts the

    same values as the builtin open() function.

  • bufsize – The file’s desired buffer size. Accepts the same values as

    the builtin open() function.

__init__(mode='r', bufsize=None)

HelpFormatter

class IPython.external.argparse.HelpFormatter(prog, indent_increment=2, max_help_position=24, width=None)

Bases: object

Formatter for generating usage messages and argument help strings.

Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.

__init__(prog, indent_increment=2, max_help_position=24, width=None)
add_argument(action)
add_arguments(actions)
add_text(text)
add_usage(usage, actions, groups, prefix=None)
end_section()
format_help()
start_section(heading)

Namespace

class IPython.external.argparse.Namespace(**kwargs)

Bases: IPython.external.argparse._AttributeHolder

Simple object for storing attributes.

Implements equality by attribute names and values, and provides a simple string representation.

__init__(**kwargs)

RawDescriptionHelpFormatter

class IPython.external.argparse.RawDescriptionHelpFormatter(prog, indent_increment=2, max_help_position=24, width=None)

Bases: IPython.external.argparse.HelpFormatter

Help message formatter which retains any formatting in descriptions.

Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.

__init__(prog, indent_increment=2, max_help_position=24, width=None)

RawTextHelpFormatter

class IPython.external.argparse.RawTextHelpFormatter(prog, indent_increment=2, max_help_position=24, width=None)

Bases: IPython.external.argparse.RawDescriptionHelpFormatter

Help message formatter which retains formatting of all help text.

Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.

__init__(prog, indent_increment=2, max_help_position=24, width=None)