ash
09/02/2021, 10:05 AM1.) I have flow which gets data from an api and i want to publish it to slack directly, how should i do it without writing it anywhere.
2.) If i want to save my flow/task results on a machine from where I am registering my flows despite flow running on pods on k8 ,how should i do it.
Zach Angell
09/02/2021, 1:54 PMash
09/03/2021, 5:25 AMwith Flow("funnnel_1", state_handlers=[flow_failed_alert]) as f:
df_train = train_app_funnel()
df_flight = brand_app_funnel()
df_web = web_app_funnel()
out = creating_final(df_train,df_flight,df_web)
Zach Angell
09/03/2021, 2:14 PMcreate_final
, you should be able to publish it to Slackash
09/04/2021, 9:01 AMZach Angell
09/07/2021, 3:46 PMwith Flow("funnnel_1", state_handlers=[flow_failed_alert]) as f:
df_train = train_app_funnel()
df_flight = brand_app_funnel()
df_web = web_app_funnel()
out = creating_final(df_train,df_flight,df_web)
post_to_slack(out) # new task `post_to_slack` takes in `out` and posts it to slack