repype.typing

class repype.typing.InputID

Type hint for input identifiers. Each input identifier uniquely corresponds to a pipeline run.

alias of TypeVar(‘InputID’, int, str)

class repype.typing.PathLike

Type hint for path-like objects.

alias of TypeVar(‘PathLike’, str, ~pathlib.Path)

repype.typing.Pipeline

Forward declaration of the repype.pipeline.Pipeline class.

alias of TypeVar(‘..pipeline.Pipeline’)

repype.typing.PipelineData

Pipeline data object. A dictionary with string keys and arbitrary values.

alias of Dict[str, Any]