Ipython Ninjitsu
- ?docstring
- ??sourcecode
- %run
- %debug
- %autoreload
- %history
- autoformat
- %reset
- !shell commands
?docstring # [1]
Stop going to google everytime your stuck and stay in your workflow. The
ipython ? is a superhero for productivity and staying on task.
from kedro.pipeline import Pipeline
Pipeline?
Init signature:
Pipeline(
nodes: Iterable[Union[kedro.pipeline.node.Node, ForwardRef('Pipeline')]],
*,
tags: Union[str, Iterable[str]] = None,
)
Docstring:
A ``Pipeline`` defined as a collection of ``Node`` objects. This class
treats nodes as part of a graph representation and provides inputs,
outputs and execution order.
Init docstring:
Initialise ``Pipeline`` with a list of ``Node`` instances.
Args:
nodes: The iterable of nodes the ``Pipeline`` will be made of. If you
provide pipelines among the list of nodes, those pipelines will
be expanded and all their nodes will become part of this
new pipeline.
tags: Optional set of tags to be applied to all the pipeli...