Re: [Pytables-users] query node/group name

2011-02-23 Thread Dominik Szczerba
Many thanks, indeed, it makes sense, if not entirely immediately for an end-user. Regards, Dominik On Wed, Feb 23, 2011 at 4:24 PM, Francesc Alted wrote: > A Wednesday 23 February 2011 16:11:48 Dominik Szczerba escrigué: >> Many thanks, Elias. indeed, this does the trick. >> However, I am still

Re: [Pytables-users] query node/group name

2011-02-23 Thread Francesc Alted
A Wednesday 23 February 2011 16:11:48 Dominik Szczerba escrigué: > Many thanks, Elias. indeed, this does the trick. > However, I am still wondering about the untypical naming convention, > making it not immediately obvious to the user. The 'untypical' naming convention comes from the necessity of

Re: [Pytables-users] query node/group name

2011-02-23 Thread Dominik Szczerba
s an attribute (not a method) > > print group._v_name > > HTH, > Elias > > > >  From:       Dominik Szczerba > >  To:         Discussion list for PyTables > > >  Date:       02/23/2011 08:25 AM > >  Subject:    [Pytables-users] query node/group nam

Re: [Pytables-users] query node/group name

2011-02-23 Thread elias . collas
25 AM Subject:[Pytables-users] query node/group

[Pytables-users] query node/group name

2011-02-23 Thread Dominik Szczerba
Hi, I am struggling to get a name of a group: for group in f.walkGroups(): print group This prints me things like: /mygroup1 (Group) '' while I want to get a name (path) of the current group. I can not seem to find any group.GetName() method or similar in the documentation. I will be h