Metadata-Version: 2.4
Name: pyPhasesHDF5RecordExporter
Version: 0.0.1
Summary: HDF5-backed record exporter plugin for pyPhases
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pyPhases
Requires-Dist: h5py
Requires-Dist: numpy
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# pyPhasesHDF5RecordExporter

HDF5-backed record exporter plugin for [pyPhases](https://github.com/TUDublin/pyPhases).

Provides `HDF5RecordExporter` as a drop-in replacement for `MemmapRecordExporter`,
storing data in compressed HDF5 files instead of raw memory-mapped arrays.

## Installation

```bash
pip install pyPhasesHDF5RecordExporter
```

## Usage

```python
from pyPhasesHDF5RecordExporter.Plugin import Plugin
project.use(Plugin)
```

This registers `HDF5RecordExporter` and removes `MemmapRecordExporter` from the
project's system exporters.
