bhargavnova / python-helper-modules

MIT License
7 stars 24 forks source link

Merge Multiple CSV Files Script/Module #39

Closed bhargavnova closed 9 months ago

bhargavnova commented 9 months ago

Objective

Develop a Python script or module that allows users to merge multiple CSV (Comma Separated Values) files into a single combined CSV file. This tool will provide a convenient way to aggregate data from multiple sources and create a unified dataset.

Features

Example Usage

import csv_merger

# Merge multiple CSV files
csv_merger.merge(['file1.csv', 'file2.csv', 'file3.csv'], output_file='merged_data.csv')

# Customize the output file name
csv_merger.merge(['file1.csv', 'file2.csv', 'file3.csv'], output_file='combined_data.csv')

Difficulty: Beginner/ Intermediate

Tags: Python, CSV, Data Merging, Data Aggregation

Additional Information

Contribution Guidelines

The updated guidelines can be found here.

Note:

aecuto commented 9 months ago

i'll take this

bhargavnova commented 9 months ago

Sure! @aecuto, Happy to help :) Please keep in mind the Guidelines.

Thanks Happy Coding!