Files
clawhdf5/crates/clawhdf5-py/README.md
T

548 B

rustyhdf5-py

crates.io docs.rs

Python bindings for rustyhdf5 — a pure-Rust HDF5 library.

Features

  • h5py-compatible API (File, Group, Dataset)
  • NumPy array integration
  • Read and write HDF5 files from Python with no C dependencies

Usage

import rustyhdf5

with rustyhdf5.File('data.h5', 'r') as f:
    data = f['/dataset'][:]

License

MIT