Utilities for handling hdf5 files with python.
- display attributes of chosen object after selection?
It is useful to define a script that can be called from the command line:
#!/usr/bin/env python
import sys
import os
import hdf5utils as hu
if __name__ == "__main__":
if len(sys.argv) != 2:
print("Error: call as ./{} <filename>".format(os.path.basename(__file__)))
else:
hu.show_menu(sys.argv[1])