How to Combine Multiple CSV Files into One File Using Python: A Step-by-Step Guide (2024)

Support The Author: If you’ve found value in this article, please leave me a positive Google My Business review!

A positive review would really help go a long way! It’s super easy and only takes a few seconds. Everything is much appreciate, especially the positive feedback and how this content may have helped you. For any negative feedback or questions about this article, please reach out to me at hello@raredog.co and I’d be happy to help.



Okay, so you’ve just exported 30 files from Ahrefs or SEMRush, how do you combine all of them into one CSV without taking an hour and potentially making mistakes along the way?

(Btw! Need help with keyword research? Reach out to us for SEO Consultation and SEO services today!)

Python can help, and I’ll walk you through it step by step…


This post is for anyone who finds themselves frequently merging datasets with identical columns and wants to automate the process. By the end of this guide, you'll be able to combine multiple CSV files into one in an instant, freeing up your time for more complex and creative tasks.

In my experience, I've seen countless hours spent on work that could be done almost instantly with a simple Python script. This realization inspired me to share a solution that can significantly simplify this process for those of us working on Windows systems.


Step 1: Install Python

If you haven't already, you need to install Python. Go to the official Python website (https://www.python.org/) and download the latest version. During the installation, make sure to check the box that says "Add Python to PATH".


Step 2: Install pandas

Pandas is a Python library that provides data manipulation and analysis capabilities. You can install it using pip, which is a package manager for Python. Open Command Prompt and type the following command:

pip install pandas

Step 3: Prepare your CSV files

Make sure all the CSV files you want to combine are in the same folder. Ensure they all have the same structure (i.e., the same columns in the same order).

Step 4: Create a Python script

Open a text editor and save a new file with a .py extension (for example, combine_csv.py). In this file, paste the following Python code:

import pandas as pd
import os

# replace with your folder's path
folder_path = r'C:\path\to\your\folder'

all_files = os.listdir(folder_path)

# Filter out non-CSV files
csv_files = [f for f in all_files if f.endswith('.csv')]

# Create a list to hold the dataframes
df_list = []

for csv in csv_files:
    file_path = os.path.join(folder_path, csv)
    try:
        # Try reading the file using default UTF-8 encoding
        df = pd.read_csv(file_path)
        df_list.append(df)
    except UnicodeDecodeError:
        try:
            # If UTF-8 fails, try reading the file using UTF-16 encoding with tab separator
            df = pd.read_csv(file_path, sep='\t', encoding='utf-16')
            df_list.append(df)
        except Exception as e:
            print(f"Could not read file {csv} because of error: {e}")
    except Exception as e:
        print(f"Could not read file {csv} because of error: {e}")

# Concatenate all data into one DataFrame
big_df = pd.concat(df_list, ignore_index=True)

# Save the final result to a new CSV file
big_df.to_csv(os.path.join(folder_path, 'combined_file.csv'), index=False)

Remember to replace 'C:\path\to\your\folder' with the actual path of your folder.

Step 5: Navigate to your Python script using the Command Prompt

Open Command Prompt. To navigate to the folder where you saved your Python script, use the cd command, which stands for "change directory".

For example, if your script is in the directory "C:\Users\YourName\Documents", you would type cd C:\Users\YourName\Documents and press Enter.

If the folder name contains a space, you need to enclose the path in double quotes, like so: cd "C:\Users\YourName\My Documents".

Step 6: Run the script

After navigating to the correct folder, run your script with the command python combine_csv.py.

After the script has finished running, you should find a new CSV file named combined_file.csv in your folder. This file contains the combined data from all your CSV files.

Troubleshooting Common Issues:

  1. PermissionError: [Errno 13] Permission denied: This error typically occurs if the script does not have permission to read the file or write to the directory. Make sure your user account has the necessary permissions for the folder where your CSV files are located and where you're trying to save the combined file.

  2. FileNotFoundError: [Errno 2] No such file or directory: This error occurs if the specified file or directory does not exist. Check the path you have provided in folder_path and ensure it is correct.

  3. UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte: This error typically occurs if the file is not in the expected 'utf-16' encoding. If you know the file is in a different encoding, you can change the encoding='utf-16' part of the code to match the actual encoding.

Combining Excel (.XLSX , .XLS, .XLB) Files:

If you want to combine Excel files instead of CSV files, you would need to install the openpyxl package (for .xlsx files) or xlrd package (for .xls files) with pip install openpyxl xlrd.

Then, replace pd.read_csv() with pd.read_excel() in the code, and change the file extension in the if condition from .csv to .xls, .xlsx, .xlsb, etc., based on the type of Excel files you have.

Note: All Excel files should be of the same type (.xls, .xlsx, .xlsb, etc.). If you have different types, you would need to run separate blocks of code for each type.

Here's what the adjusted code snippet would look like for .xlsx files:

# Filter out non-Excel files
xlsx_files = [f for f in all_files if f.endswith('.xlsx')]

for xlsx in xlsx_files:
    try:
        df = pd.read_excel(os.path.join(folder_path, xlsx))
        df_list.append(df)
    except Exception as e:
        print(f"Could not read file {xlsx} because of error: {e}")

Support The Author: If you’ve found value in this article, please leave me a positive Google My Business review!

A positive review would really help go a long way! It’s super easy and only takes a few seconds. Everything is much appreciate, especially the positive feedback and how this content may have helped you. For any negative feedback or questions about this article, please reach out to me at hello@raredog.co and I’d be happy to help.

Previous
Previous

How to Categorize Keywords By Search Intent Using Python: A Complete Guide [2024]

Next
Next

Understanding Entity SEO: What it is and how to Optimize for It [2024]