Skip to content

JobClient.display

def JobClient.display(
job_id: Job | UUID | str,
direction: str = "down",
layout: str = "dagre",
sketchy: bool = True,
) -> None

Display a job diagram in an interactive Python environment, such as a Jupyter notebook.

Use JobClient.visualize when you need the SVG markup instead of displaying it directly.

job_id Job | UUID | str required

The job, job ID, or job ID string to display.

direction str

Direction for the diagram to flow. Defaults to down.

layout str

Layout engine for the diagram. Supported values are dagre and elk. Defaults to dagre.

sketchy bool

Whether to render the diagram in a sketchy, hand-drawn style. Defaults to True.

None