hey :slightly_smiling_face: i want to output sever...
# questions
s
hey 🙂 i want to output several htmls, jsons, and dataframes at once, as a single report. is there any way to create them all in a single node and save to a single zipped file?
d
Two ways: 1. You can create a custom dataset that does exactly what you want 2. You could write an
after_pipeline_run
hook that does this for you We normally don’t expect hooks to do IO like I’m suggesting in 2, but it’s probably easier to do it that way
s
@datajoely Thanks! i went for the custom dataset and its what i was looking for! works great