[Pytables-users] ANN: inSCIght, The Scientific Computing Podcast

2011-02-23 Thread Anthony Scopatz
Hello All, I am very pleased to announce inSCIght, a new scientific computing podcast (press release below). I apologize for those of you in the intersection of these lists that may receive this message multiple times. As I mention in the press release, we are very open to your contributions! B

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
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. Best regards, Dominik On Wed, Feb 23, 2011 at 3:18 PM, wrote: > Hi Dominik, > > I think what you're looking for is an attribute (n

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

2011-02-23 Thread elias . collas
Hi Dominik, I think what you're looking for is an attribute (not a method) print group._v_name HTH, Elias From: Dominik Szczerba

[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