# RunResult.outputs
URL: https://lsd.tools/docs/api-runresult-outputs
Updated: 2026-07-17

## Example

```python
for port, t in Engine().run(fanout).outputs.items():
    print(port, t.columns)
```

## Notes

Keyed by output port name, one [`Table`](/docs/api-table) per port. Empty dict when no step produced
named outputs. For a single-output pipeline, use [`output`](/docs/api-runresult-output) instead.

## See also

**API:** [output](/docs/api-runresult-output) · [print](/docs/api-runresult-print) · [RunResult](/docs/api-runresult)

**Guides:** [Multi-output mesh](/docs/ex-multi-output)
