save_pickle

ssapy.io.save_pickle(filename_, data_)[source][source]

Save data to a pickle file.

This function serializes the given data and saves it to the specified file path using the pickle module. The file is opened in write-binary mode to ensure proper saving of the data.

Parameters:
  • filename (str) – The path to the file where the data will be saved.

  • data (object) – The data to be serialized and saved to the pickle file.

Returns:

The function does not return a value. The data is saved to the specified file.

Return type:

None