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:
doc for Data format
Reader-source in core-lib
Reader-source in data-module (Inherits from core-reader)
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()}")