> This is a really silly question but I couldn't find the answer in the
> documentation.
> I am trying to read a scalar dataset but I don't know know.
>
> How do I read this back?
It looks a little funny but h5py uses the NumPy syntax:
dataset = file["name"]
data = dataset[()]
With older versions of h5py, dataset.value and dataset[...] will also
work, although these are discouraged.
Andrew