Re: [Numpy-discussion] extracting data from ODF files

2010-01-06 Thread Fabricio Silva
Le mardi 05 janvier 2010 à 22:34 -0800, Christopher Barker a écrit : > Nadav Horesh wrote: > > is there a (simple) solution to extract data from OpenDocument files > > (espacially OpenOffice.org Calc files) into a Numpy Array? > > Aren't they XML? you may be able to use an XML parser. See, e.g.,

Re: [Numpy-discussion] Sphinx/Numpydoc, attributes and property

2009-10-22 Thread Fabricio Silva
It seems that class Profil(object): def __init__(self): """ """ pass def bla(self): "Blabla." return 0 @property def tdeb(self): "The time horizon startpoint." return self.pts[0,:].min() > and a foo.rst conta

[Numpy-discussion] Sphinx/Numpydoc, attributes and property

2009-10-22 Thread Fabricio Silva
It seems that either Sphinx or NumpyDoc is having troubles with property attributes. Considering the following piece of code in foo.py class Profil(object): """ Blabla Attributes -- tfin tdeb : flo