I am reading in a group from an hdf5 file, in which some of the group members are external links. I would like to be able to identify which group members are external links, and subsequently ignore them for further reading.
Example code:
f = h5py.File(filename, 'r')
data = f['header']
for p in date.keys:
(if p is an external link, detect it here!)