Skip to content
Snippets Groups Projects

Draft: Merge version0.1 changes into dev

Closed Hock, Martin requested to merge version0.1 into dev
8 files
+ 0
200
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 0
11
"""Handling of hdf5 data files."""
import h5py
# Shows how to create an externalLink (symbolic) to a hdf5 File
# Documentation available at:
# https://docs.h5py.org/en/stable/high/group.html#external-links
myfile = h5py.File('./example.h5', 'w')
myfile['ext link'] = h5py.ExternalLink("testdata_2.h5", "/")
myfile.close()
Loading