Is there any way to obtain more than output table from a python node?

Hello,

I have a python node that works.

I would like to obtain as output three tables, doing this

  1. knio.output_tables[0] = knio.Table.from_pandas(final_results)
  2. knio.output_tables[1] = knio.Table.from_pandas(results.loc[errors_on_rows])
  3. knio.output_tables[2] = knio.Table.from_pandas(df_where_cols_are_0)
  4. But the program gives me the errorKeyError: ‘Invalid port index 1, only 1 output_table is available’

for an only table as output works
Can you help me?
Thank you in advance.
Regards,
Mary

@Mary_lea you can add ports as well as remove them. A little plus should appear if you hover over the right side of the node.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.