Skip to content
Snippets Groups Projects
Select Git revision
  • 977736fa3b2c0a2b21fef942218da9063e3acab1
  • master default protected
  • gitkeep
  • development protected
  • QRCode/Size
  • sync-link-hdf5
  • feature/multi-scriptpaths
  • dev/plotID_Class
  • doc
  • V1.0.1
  • V1.0
  • V1.0-RC1
  • V0.2.2
  • V0.2.1
  • V0.2-RC1
  • V0.1
16 results

HDF5_externalLink.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    HDF5_externalLink.py 286 B
    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()