# Workflow\.list\_notebooks

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

Returns a list of notebooks within the workflow.

### **Parameters:**

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

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

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

### **Examples:**

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

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