Workflow.list_notebooks

Workflow.list_notebooks(max_results=None) → list<Notebook>

Returns a list of notebooks within the workflow.

Parameters:

max_results : int, default None If specified, will only return up to max_results notebooks

Returns:

list<Notebook>

Examples:

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

Last updated

Was this helpful?