lsst.pipe.base

The lsst.pipe.base module provides base classes for the task framework. Tasks package the algorithmic units of the LSST Science Pipelines. You can create, configure, and run tasks with their Python APIs. Some tasks, called command-line tasks, are also packaged into data processing pipelines that you can run from the command line.

Developing tasks and command-line tasks

Python API reference

lsst.pipe.base Package

Functions

logInfo(obj, prefix[, logLevel]) Log timer information to obj.metadata and obj.log.
timeMethod(func) Decorator to measure duration of a task method.

Classes

ArgumentParser(name[, usage]) Argument parser for command-line tasks that is based on argparse.ArgumentParser.
ButlerInitializedTaskRunner(TaskClass, parsedCmd) A TaskRunner for CmdLineTasks that require a butler keyword argument to be passed to their constructor.
CmdLineTask([config, name, parentTask, log]) Base class for command-line tasks: tasks that may be executed from the command-line.
ConfigDatasetType(name) Dataset type specified by a config parameter.
ConfigFileAction(option_strings, dest[, ...]) argparse action to load config overrides from one or more files.
ConfigValueAction(option_strings, dest[, ...]) argparse action callback to override config parameters using name=value pairs from the command-line.
DataIdContainer([level]) Container for data IDs and associated data references.
DatasetArgument([name, help, default]) Dataset type specified by a command-line argument.
InputOnlyArgumentParser(name[, usage]) ArgumentParser for command-line tasks that don’t write any output.
Struct(**keyArgs) A container to which you can add fields as attributes.
Task([config, name, parentTask, log]) Base class for data processing tasks.
TaskError Use to report errors for which a traceback is not useful.
TaskRunner(TaskClass, parsedCmd[, ...]) Run a command-line task, using multiprocessing if requested.

Class Inheritance Diagram

Inheritance diagram of lsst.pipe.base.argumentParser.ArgumentParser, lsst.pipe.base.cmdLineTask.ButlerInitializedTaskRunner, lsst.pipe.base.cmdLineTask.CmdLineTask, lsst.pipe.base.argumentParser.ConfigDatasetType, lsst.pipe.base.argumentParser.ConfigFileAction, lsst.pipe.base.argumentParser.ConfigValueAction, lsst.pipe.base.argumentParser.DataIdContainer, lsst.pipe.base.argumentParser.DatasetArgument, lsst.pipe.base.argumentParser.InputOnlyArgumentParser, lsst.pipe.base.struct.Struct, lsst.pipe.base.task.Task, lsst.pipe.base.task.TaskError, lsst.pipe.base.cmdLineTask.TaskRunner