I11_join_excel #12

Merged
lafrite merged 3 commits from I11_join_excel into main 2023-10-05 13:24:15 +00:00
Showing only changes of commit 48e75358ac - Show all commits

View File

@ -8,7 +8,7 @@ def join_excel(src, dest, file_pattern):
filenames = list_files(src, file_pattern)
dfs = extract_dfs(filenames)
joined_df = pd.concat(dfs)
joined_df.to_excel(dest)
joined_df.to_excel(dest, index=False)
def list_files(src, file_glob):