merge_dicts

ssapy.io.merge_dicts(file_names, save_path)[source][source]

Merge multiple dictionaries stored in pickle files into a single dictionary and save the result.

Parameters:
  • file_names (list of str) – A list of file paths to pickle files containing dictionaries to merge.

  • save_path (str) – The file path where the merged dictionary will be saved as a pickle file.

Returns:

The function does not return a value. The merged dictionary is saved to save_path.

Return type:

None