Skip to content

Instantly share code, notes, and snippets.

@estasney
estasney / .block
Last active October 13, 2017 16:14 — forked from kerryrodden/.block
Sequences sunburst (d3 v4)
license: apache-2.0
@estasney
estasney / combine_excel.py
Created September 18, 2017 14:48
Combining Multiple Excel Files
import pandas as pd # Ensure xlrd and xlsxwriter are installed. Needed for working with Excel files.
import os
import easygui
target_open_folder = easygui.diropenbox(msg="Select the folder with the Excel files to be combined.")
file_list = []
for file in os.listdir(target_open_folder):
file_list.append(os.path.join(target_open_folder, file))