protocols
Protocol roughly formalizing the overlap of h5py.File and IH5Record API.
We build the MetadorContainer interface assuming only these methods.
OpenMode
module-attribute
¶
OpenMode = Literal['r', 'r+', 'a', 'w', 'w-', 'x']
User open modes that can be passed during initialization.
H5NodeLike ¶
Bases: Protocol
HDF5 Files, Groups and Datasets are all Nodes.
Source code in src/metador_core/container/protocols.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
H5DatasetLike ¶
Bases: H5NodeLike
, Protocol
Datasets provide numpy-style indexing into data.
Metador containers use it for storing bytes, and for getting bytes out again using [()].
Source code in src/metador_core/container/protocols.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
H5FileLike ¶
Bases: H5GroupLike
, Protocol
A HDF5 File acts like the root group and has some extra features.
Source code in src/metador_core/container/protocols.py
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|