Last active
July 14, 2020 06:22
-
-
Save BexTuychiev/827c2fdf43a8cb8c6c4b325331b489fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import h5py | |
filename = 'ligo_data.hdf5' | |
data = h5py.File(filename, 'r') | |
print(data.keys()) | |
# Values for each group can be accessed like this | |
print(data['meta'].value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment