>>> wb = Workbook()
>>> for ws in wb.worksheets:
>>> ...
The IterableWorksheet is actually using iterators (actually even
generators, the name did not evolve with the actual implementation) to
parse the xml content on the fly.
Hope this clarifies the situation :)
Cheers,
Eric
Le 14/11/11 20:21, nycynik a �crit :
(see
http://readthedocs.org/docs/openpyxl/en/latest/api.html#openpyxl.reader.excel.load_workbook)
If you feel like adding more documentation, feel free, that's something
we desperately need ;-)
If you want, you can fork the project on bitbucket and send me a pull
request when you're done.
This goes for anyone willing to contribute :)
Cheers,
Eric
Le 14/11/11 21:07, nycynik a �crit :
for sheet in wb.worksheets[3:27]:
ws = wb[sheet]
pass