Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on February 7, 2017 11:07PM
Likes: 0
Replies: 1
Hi,
I am writing a Dataiku Python plugin and am wondering whether it is possible to have a "Managed Folder" as an output.
I can have DataSets as managed outputs using:
# Write the output to the output dataset
main_output_name = get_output_names_for_role('main')[0]
output_dataset = dataiku.Dataset(main_output_name)
output_dataset.write_with_schema(pd.DataFrame(output))
Is there a similar way of outputting to a Managed Folder, e.g. dataiku.Folder(main_output_name)?
Any help is much appreciated.
Thanks,
Jonathan