Is it possible to send PandaSerializer results to ...
# ask-community
h
Is it possible to send PandaSerializer results to a flow triggered by StartFlowRun?
k
Hey @Henry, the serializer is specified at a task level or at the flow when you register. I think it would need to be registered with the subflow and it can’t dynamically be changed by StartFlowRun if that is what you are asking
h
hmmm, how would i setup the parameters so that it could receive a dataframe?
k
I don’t believe you can because Parameters need to be JSONSerializeable as they are passed through the API and pd.DataFrame can’t be passed. You either need to pass a location for it to be loaded in the flow, or you need to pass something like a Dict[List] maybe and construct it? Not sure if that would work.
h
ah i see
thanks