Top "H5py" questions

h5py is a NumPy-compatible Python module for handling The Hierarchical Data Format (HDF5) files.

Input and output numpy arrays to h5py

I have a Python code whose output is a sized matrix, whose entries are all of the type float. If …

python arrays numpy h5py
Installing h5py on an Ubuntu server

I was installing h5py on an Ubuntu server. However it seems to return an error that h5py.h …

python python-2.7 installation h5py
Read HDF5 file into numpy array

I have the following code to read a hdf5 file as a numpy array: hf = h5py.File('path/to/…

python numpy hdf5 h5py
How to store dictionary in HDF5 dataset

I have a dictionary, where key is datetime object and value is tuple of integers: >>> d.items()[0] (…

python h5py
Open .h5 file in Python

I am trying to read a h5 file in Python. The file can be found in this link and it …

python pandas h5py
HDF5 file created with h5py can't be opened by h5py

I created an HDF5 file apparently without any problems, under Ubuntu 12.04 (32bit version), using Anaconda as Python distribution and writing …

python numpy io hdf5 h5py
Error opening file in H5PY (File signature not found)

I've been using the following bit of code to open some HDF5 files, produced in MATLAB, in python using H5…

python matlab h5py
How to append data to one specific dataset in a hdf5 file with h5py

I am looking for a possibility to append data to an existing dataset inside a .h5 file using Python (h5…

python numpy deep-learning hdf5 h5py
How to overwrite array inside h5 file using h5py

I'm trying to overwrite a numpy array that's a small part of a pretty complicated h5 file. I'm extracting an …

python arrays numpy h5py
Fastest way to write HDF5 files with Python?

Given a large (10s of GB) CSV file of mixed text/numbers, what is the fastest way to create an …

python hdf5 h5py