Last active
December 29, 2021 16:36
-
-
Save peeyush-es/fa51a09e480bd982caa76021bf80da36 to your computer and use it in GitHub Desktop.
merge csv in current directory into one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import glob | |
import pandas as pd | |
extension = 'csv' | |
all_filenames = [i for i in glob.glob('*.{}'.format(extension))] | |
combined_csv = pd.concat([pd.read_csv(f) for f in all_filenames ]) | |
combined_csv.to_csv( "combined_csv.csv", index=False, encoding='utf-8-sig') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment