Probably the simplest way to do this is to use Pandas:
import pandas as pd with pd.HDFStore('myfile.h5', 'r') as d: df = d.get('TheData') df.to_csv('myfile.csv')
Probably the simplest way to do this is to use Pandas:
import pandas as pd with pd.HDFStore('myfile.h5', 'r') as d: df = d.get('TheData') df.to_csv('myfile.csv')