# Workflow\.list\_transforms

### Workflow.<mark style="color:purple;">list\_transforms</mark>(*max\_results=None*) → list<[Transform](https://docs.redivis.com/api/client-libraries/redivis-python/reference/transform)>

Returns a list of transforms within the workflow.

### **Parameters:**

**`max_results` :&#x20;*****int, default None***\
If specified, will only return up to max\_results transforms

### **Returns:**&#x20;

**list<**[**Transform**](https://docs.redivis.com/api/client-libraries/redivis-python/reference/transform)**>**

### **Examples:**

```python
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")
notebooks = workflow.list_transforms()

for transform in transforms:
    print(transform.properties) # Properties will be populated with the transform.list resource representation
```
