h5pyd icon indicating copy to clipboard operation
h5pyd copied to clipboard

h5py distributed - Python client library for HDF Rest API

Results 43 h5pyd issues
Sort by recently updated
recently updated
newest added

Below is an error we encountered. The error is that hsload fails on data sets that have a dimension of length 0. (While I'd expect HSDS to be able to...

bug

In the [nexusformat API](https://github.com/nexpy/nexusformat), we load the entire HDF5 file tree by recursively walking through the groups in h5py, without reading in data values except for scalars and small arrays....

There are several issues that result from using H5PYD or the HSDS CLI commands on an HDF5 VDS made using H5PY. If a few HDF5 files are combined in a...

enhancement

It would neat if sparse matrices could be passed directly for writing and reading back would return a scipy sparse matrix instance.

enhancement

I have found (although it really should be another issue) that the endpoint parameter acts differently if there is a slash at the end of the value. ``` >>> f...

enhancement

h5pyd is unable to pull a "column" from a recarray/table directly. Example code using h5py: ``` In [14]: with h5py.File(path, mode='r') as f: ...: sector = f['enumerations']['sector']['id'] ...: ...: print(sector)...

enhancement

Fixes #88 Hi, we are running into the above issue with the HSDS server returning 413 errors when we try to write HDF5 files that are around ~200MB to HSDS....

Other than the readme there hasn't been any real documentation for h5pyd. To some extent this is alleviated by just using the h5py docs (https://docs.h5py.org/en/stable/), but there are enough differences...

enhancement

This implements a fix for json responses with non-ascii chars, specifically for lambda hsds responses. For some reason, when there is a json response the S30 dtype breaks on accents...

The code recognized `--username`, but the inline documentation said `--user`. This aligns the documentation with the code.