# WorkflowClient.find

```python
def WorkflowClient.find(workflow_or_slug: Workflow | str) -> Workflow
```

Get a workflow by slug.

## Parameters

**workflow\_or\_slug**

`Workflow | str`

required: true

The workflow or workflow slug to get.

## Returns

A workflow object.

```python title="Python"
workflow = workflow_client.find("scene-processing")
```
