mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
These examples are referred to from the replacement page of https://portal.hdfgroup.org/display/HDF5/Other+Examples.
10 lines
176 B
Python
10 lines
176 B
Python
import h5py
|
|
f = h5py.File('GATMO-SATMS-npp.h5', 'r+')
|
|
list(f.keys())
|
|
list(f.values())
|
|
members = []
|
|
f.visit(members.append)
|
|
for i in range(len(members)):
|
|
print(members[i])
|
|
|