A Pandas DataFrame can be converted to a hdf5 file like this;
df.to_hdf('test_store.hdf','test',mode='w')
I have an sqlite db file which has to be converted to a hdf5 file and then I would read the hdf5 file through pandas using pd.read_hdf.
But first how do I convert a python sqlite db to a hdf5 file ?
EDIT:
I am aware of using the .read_sql method in pandas. But I would like to convert the db to hdf5 first.