Python recipe - iterate through inputs
Alun
Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Registered Posts: 20 ✭✭✭✭
Possibly a newbie question, but here goes.
I am writing a Python recipe with several input datasets. Within the recipe, I'd like to loop through the inputs, doing some work on each in turn.
What would be an efficient way to code that?
Thanks in advance.
Answers
-
Hi,
This is possible if you are running DSS 9:
import dataiku import dataiku.recipe for dataset in recipe.get_inputs(): print("working on dataset %s" % dataset.name) df = dataset.get_dataframe() # Work with the df ...