LazyHDF5 is a small package for interacting with HDF5 files. The h5py library can do-it-all, but it's not necessarily easy to use and often requires many lines of code to do routine tasks. This package facilitates easier use.
Also, an HDF5 file viewer written in PyQt5 (optional, not required for installation) that displaces groups, datasets, and attributes.
- Inspection
- Get groups, datasets, file hierarchy, dataset attributes
- Editing
- Write/alter/re-write attributes
- Repack datasets (coming soon)
- Copy datasets and files
- Basic file viewer
Note: These are the developmental system specs. Older versions of certain packages may work.
- python >= 3.4
- Tested with 3.4.6, 3.5.4, 3.6.3
- numpy (1.9.3)
- Tested with 1.12.1, 1.13.1, 1.13.3
- h5py (>=2.6.0)
The HDF file view is written in PyQt5; thus, it's necessary if you want to that functionality. All of the other tools in this library are command-line.
- PyQt5 (5.8)
Note: PyQt5 only tested on Windows (via AppVeyor)
# Only Python 3.* installed pip install LazyHDF5 # If you have both Python 2.* and 3.* you may need pip3 install LazyHDF5
# Make new directory for LazyHDF5 and enter it # Clone from github git clone https://github.com/CCampJr/LazyHDF5 # Only Python 3.* installed pip install -e . # If you have both Python 2.* and 3.* you may need instead pip3 install -e . # To update in the future git pull
You will need to download the repository or clone the repository with git:
# Make new directory for LazyHDF5 and enter it # Clone from github git clone https://github.com/CCampJr/LazyHDF5
Perform the install:
python setup.py install
- Getting a list of groups from an un-opened HDF5 file
Note: when a filename is provided, the file is opened, queried, and then closed.
from lazy5.inspect import get_groups
filename = 'SomeFile.h5'
grp_list = get_groups(filename)
print('Groups:')
for grp in grp_list:
print(grp)
- Getting list of datasets from an open HDF5 file
Note: when a file-id is provided, the file is queried and then left open.
import h5py
from lazy5.inspect import get_datasets
filename = 'SomeFile.h5'
fid = h5py.File(filename, 'r')
dset_list = get_datasets(fid)
print('Datasets:')
for dset in dset_list:
print(dset)
fid.close()
- Getting the file hierarchy
from lazy5.inspect import get_hierarchy
filename = 'SomeFile.h5'
hierarchy = get_hierarchy(filename)
print('Hierarchy:')
for k in hierarchy:
print('{} : {}'.format(k, hierarchy[k]))
- Ordered dictionary of dataset attributes
from lazy5.inspect import get_attrs_dset
filename = 'SomeFile.h5'
dsetname = '/Group/SomeDataset'
attr_dict = get_attrs_dset(filename, dsetname)
print('Dataset Attributes:')
for k in attr_dict:
print('{} : {}'.format(k, attr_dict[k]))
- PyQt5 HDF5 file viewer
# From the command line python ./lazy5/ui/QtHdfLoad.py
- PyQt5 HDF5 file viewer (programmatically)
import sys
from PyQt5.QtWidgets import QApplication
from lazy5.ui.QtHdfLoad import HdfLoad
app = QApplication(sys.argv)
result = HdfLoad.getFileDataSets(pth='.')
print('Result: {}'.format(result))
sys.exit()
This software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government. Pursuant to title 17 United States Code Section 105, works of NIST employees are not subject to copyright protection in the United States and are considered to be in the public domain. Permission to freely use, copy, modify, and distribute this software and its documentation without fee is hereby granted, provided that this notice and disclaimer of warranty appears in all copies.
THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE. IN NO EVENT SHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY, CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER.
Charles H Camp Jr: [email protected]
Charles H Camp Jr