The two main Python libraries for HDF5 interaction are h5py and pytables. They don't play nicely together, particularly on windows
>>> import tables
>>> import h5py
ImportError: DLL load failed
>>> import h5py
>>> import tables # works fine
I need to use both in the same application but I'm unable to get full functionality from both libraries when each is imported. Is there a solution to this?
According to this thread on github no, I don't think you can. It seems that h5py cannot do anything about it, so I would start an issue with the pytables github.
Also, could you possibly use two different scripts? That way the import wouldn't bork.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With