Workflow.list_transforms

Workflow.list_transforms(max_results=None) → list<Transform>

Returns a list of transforms within the workflow.

Parameters:

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

Returns:

list<Transform>

Examples:

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

Last updated

Was this helpful?