I'm working with a HDF5 file format with Groups that may have a variety of 2d Table dataset names, and may have Groups. I've been using iter_nodes() to identify the Tables found in a particular model, then process based on what I find....
Recently I stumbled into the _v_leaves Group attribute, which simplifies the process (no need to figure out if a Node is a Leaf or Group!).
So, no I'm wondering...should I be using the _v_leaves Group attribute to get my Datasets, or iter_nodes() ??
Any insights from more experienced users?
Thanks in advance,
-Ken