Shepherd-Data - HDF5 Reader & Writer#

Note

TODO: WORK IN PROGRESS

These two classes allow the user to read and write shepherds hdf5-files. For more details about the data-format you can read:

Usage-Example#

This basic example can read & print some metadata from a hdf5-file.

import shepherd_data as sd

with sd.Reader("./hrv_sawtooth_1h.h5") as db:
    print(f"Mode: {db.get_mode()}")
    print(f"Window: {db.get_window_samples()}")
    print(f"Config: {db.get_config()}")

Reader#

Writer#