Writes .pickle file.

Parameters:

Parameters:
See dedicated page for more information.
WritePickle takes the table on its first input pin, converts it to a pandas DataFrame, and serializes it to a single .pickle file. Compared to text formats (CSV) it preserves dtypes (categoricals, datetimes with timezone, nullable ints, etc.) and is typically faster. Use it when:
Considerations
Connect the input. Wire any action that outputs a table into the first pin of WritePickle.
Choose the output path.
Click filepath → select type and pick one:
temp/out.pickle.records/out.pickle.>"temp/out.pickle".Run the pipeline. The table is written to the specified location. Check the logs for the exact path and any warnings.
Upstream: Py_ApplyModel produces a table with a predictionsSmall column.
Configure WritePickle:
>"records/predictionsSmall.pickle"noneResult: a file predictionsSmall.pickle appears in your project assets. You can read it later in Python:
import pandas as pd
df = pd.read_pickle("predictionsSmall.pickle")
That’s it—WritePickle is the quickest way to persist a pandas-perfect snapshot of your table for Python workflows.
