Workflow.list_datasources
Workflow.list_datasources(max_results=None) → list<Datasource>
Parameters:
Returns:
Examples:
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")
datasources = workflow.list_datasources()
for datasource in datasources:
print(datasource.properties) # Properties will be populated with the datasource.list resource representationWas this helpful?

