Workflow.parameter

Workflow.parameter(name) → Parameter

Create a reference to the notebook within a workflow.

Parameters:

name : str The scoped reference to the parameter, unique within the workflow.

Returns:

Parameter

Examples

workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")

param = workflow.parameter('my_param')
print(param.get_values())

Last updated

Was this helpful?