26 lines
548 B
Markdown
26 lines
548 B
Markdown
# rustyhdf5-py
|
|
|
|
[](https://crates.io/crates/rustyhdf5-py)
|
|
[](https://docs.rs/rustyhdf5-py)
|
|
|
|
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
|
|
|
|
```python
|
|
import rustyhdf5
|
|
|
|
with rustyhdf5.File('data.h5', 'r') as f:
|
|
data = f['/dataset'][:]
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|