append_csv

ssapy.io.append_csv(file_names, save_path='combined_data.csv', sep=None, dtypes=False, progress=None)[source][source]

Appends multiple CSV files into a single CSV file.

Parameters:
  • file_names (list) – A list of CSV file names.

  • save_path (str) – The path to the output CSV file. If not specified, the output will be saved to the current working directory.

  • sep (str) – The delimiter used in the CSV files.

  • dtypes (dict) – A dictionary specifying data types for columns.

Returns:

None