Hi,

I have several leaf nodes of the same table dtype:

class VideoNode(tables.IsDescription):
    ...

Not all tables in the hdf5 file are of the same type, however. How do I iterate
over all leafes which are tables of the above class, while ignoring tables with
different signatures?

i.e. I'd like to write something like:
<code>
f = tables.openFile(...)
foo = f.walkNodes('/', classname='VideoNode')
</code>
which does not work because only the class name is "Table"...

or
<code>
bar = filter(isinstance(x, VideoNode) for x in f.walkNodes('/', 'Table')))
</code>

which does not work, because x is never an instance of VideoNode.

Any ideas?

Thanks in advance
Uwe


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Pytables-users mailing list
Pytables-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pytables-users

Reply via email to