2.4.1. h5pywrappers.group.load
- load(group_id, read_only=True)[source]
Load an HDF5 group from an HDF5 file.
Note that users can access the HDF5 file object to which the HDF5 group of interest belongs via
group.file, wheregroupis the HDF5 group of interest. To close the HDF5 file, users can run the commandgroup.file.close(), however by doing so, any other HDF5 objects belonging to that file will become unusable.- Parameters:
- group_id
h5pywrappers.obj.ID The parameter set specifying the HDF5 group of interest.
- read_onlybool, optional
If
read_onlyis set toTrue, then the HDF5 group of interest cannot be modified after loading it. Otherwise, ifread_onlyis set toFalse, then the HDF5 group of interest can be modified after loading it.
- group_id
- Returns:
- group
h5py.Group The HDF5 group of interest.
- group