combine_csv_files()

Combine multiple CSV files into a single CSV file.

Usage

Source

combine_csv_files(
    input_files,
    output_file,
    separator="\t",
)

Parameters

input_files: list[str] | str

CSV file path.

output_file: str

CSV file path where the combined data will be saved.

separator: Any = ""
CSV files (default is ‘tab’). Default is ’ ’.