import pandas as pd
import xlrd
wb = xlrd.open_workbook(file)
df = pd.read_excel(wb)
df.to_hdf(h5_file,'key',format='table')
import pandas as pd
import xlrd
wb = xlrd.open_workbook(file)
df = pd.read_excel(wb)
df.to_hdf(h5_file,'key',format='table')