This file contains hidden or 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 | |
# Copyright (c) 2023 kglspl | |
# MIT License (the same as: https://github.com/kglspl/ppmparser/blob/master/LICENSE) | |
class H5FS(object): | |
def __init__(self, filename, mode): | |
self.filename = filename | |
self.f = h5py.File(filename, mode) | |
self.dset = None |