All docs
RunResult·
property
RunResult.outputs
the last producing step's outputs keyed by port
Python
outputs -> dict[str, Table]
Returns dict — `{port: Table}` for the last producing step (multi-output steps)
Example#
Python
for port, t in Engine().run(fanout).outputs.items():
print(port, t.columns)
Notes#
Keyed by output port name, one Table per port. Empty dict when no step produced
named outputs. For a single-output pipeline, use output instead.
See also#
API: output · print · RunResult
Guides: Multi-output mesh
By LSD Team · Last updated Jul 17, 2026
Ask on Discord
View as Markdown