HDF5Group¶
async_hdf5.HDF5Group ¶
An HDF5 group — a container for datasets and other groups.
attributes
async
¶
children
async
¶
dataset
async
¶
dataset(name: str) -> HDF5Dataset
Open a child dataset by name.
Parameters:
-
name(str) –The name of the child dataset.
Returns:
-
HDF5Dataset–The child dataset.
Raises:
-
RuntimeError–If the child does not exist or is not a dataset.
dataset_names
async
¶
group
async
¶
Open a child group by name.
Parameters:
-
name(str) –The name of the child group.
Returns:
-
HDF5Group–The child group.
Raises:
-
RuntimeError–If the child does not exist or is not a group.
group_names
async
¶
navigate
async
¶
Navigate to a group by /-separated path.
Parameters:
-
path(str) –A
/-separated path relative to this group (e.g."level1/level2").
Returns:
-
HDF5Group–The group at the given path.
Raises:
-
RuntimeError–If any component along the path is not found.