# JobClient.display

```python
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`](/docs/api-reference/python/tilebox.workflows/JobClient.visualize) when you need the SVG markup instead of displaying it directly.

## Parameters

**job\_id**

`Job | UUID | str`

required: true

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`.

## Returns

`None`

```python title="Python"
job_client.display(job)
```
