for rownum in range(0, len(self.sheet.rows) ):
   for cell in self.sheet.rows[rownum]:
      print cell.value

I want to access all cell values in a sheet row by row with openpyxl. Above code works but too slow. How can I access all cell values faster?

link|improve this question

40% accept rate
feedback

3 Answers

If you're only reading cells from top to bottom and from left to right (like most of us) you can use the "optimized reader" http://packages.python.org/openpyxl/optimized.html. It works quite fast (CPU bound) and has smaller memory footprint than regular reader.

Disclaimer: I'm the author of openpyxl.

link|improve this answer
feedback

Just hazarding a guess, I think this might be faster.

for row in sheet.rows:
    for cell in row:
        print cell.value
link|improve this answer
feedback

openpyxl is just plain slow. you could possibly convert your document to xls with openoffice, and use xlrd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.