The openpyxl tag has no wiki summary.
7
votes
5answers
5k views
Reading xlsx files using Python
I read last year that xlrd was being updated to be able to read xlsx files (Excel 2007, 2010). Is there any news on this development, or the use of other Python utilities?
Thanks,
Kevin
6
votes
6answers
2k views
Python: Writing to Excel 2007+ files (.xlsx files)
Is there a Python module somewhere to write Excel 2007+ files?
Specifically, I'm looking to write a file which is longer than 65535 lines long...
5
votes
1answer
373 views
openpyxl cell style not reporting correctly
Using the python library openpyxl I am reading an XLSX file created in excel 2007. it is empty apart from cell A1 which is coloured yellow and has the value "test" written in it. I can easily retrieve ...
3
votes
3answers
208 views
Exporting to Excel .xlsx from a Python Pyramid project
I know about the XLWT library, which I've used before on a Django project. XLWT is very neat but as far as I know, it doesn't support .xlsx which is the biggest obstacle in my case. I'm probably going ...
3
votes
2answers
459 views
Use openpyxl to edit a Excel2007 file (.xlsx) without changing its own styles?
I have a .xlsx file to edit, I found openpyxl could manipulate Excel 2007 files.
I only want to change the value in some cells and leave other settings unchanged.
But after I went through the ...
3
votes
2answers
453 views
Creating big Excel sheets programmatically
We are using OpenPyxl to export MySQL content to Microsoft Excel in XSLX format
https://bitbucket.org/ericgazoni/openpyxl/overview
However, the amount of data we are dealing with is big. We are ...
2
votes
1answer
228 views
Setting styles in Openpyxl
I need advice on setting styles in Openpyxl.
I see that the NumberFormat of a cell can be set, but I also require setting of font colors and attributes (bold etc). There is a style.py class but it ...
2
votes
2answers
110 views
The ability to apply multiple formats to cell with xlwt / openpyxl
I plan to use one of 2 libraries below to output excel file in python:
xlwt ( http://www.python-excel.org/ )
openpyxl ( http://packages.python.org/openpyxl/ )
I tried the first one, most of things ...
2
votes
1answer
215 views
Reading .xlsx format in python
I've got to read .xlsx file every 10min in python.
What is the most efficient way to do this?
I've tried using xlrd, but it doesn't read .xlsx - according to documentation he does, but I can't do this ...
2
votes
1answer
437 views
Python: Reading Excel 2007 files under Linux environment
I want to read excel 2007 files via python on my Ubuntu server. I have already checked http://www.python-excel.org/ xlwt and xlrd but it seems like none of them can read excel 2007 files.
What would ...
1
vote
2answers
77 views
Saving openpyxl file via text and filestream
I'm building OpenPyXL into an application that expects a string containing the content of the excel file, for it to write via file stream.
From my investigation into the OpenPyXL source code, it ...
1
vote
1answer
101 views
openpyxl check for empty cell
openpyxl seems to be a great method for using Python to read Excel files, but I've run into a constant problem. I need to detect whether a cell is empty or not, but can't seem to compare any of the ...
1
vote
3answers
187 views
how to access cell values faster with openpyxl?
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 ...
0
votes
2answers
203 views
Python (or C) library for creating XLSX documents that can handle millions of rows
I'm looking for a library to create XLSX files which can contain upwards of a million rows, and several dozen columns. So far all the libraries I have found in Python consume too much memory, and I ...
0
votes
2answers
179 views
How to insert and format values cell by cell in an XLSX file using openpyxl
I am trying to write an XLSX file using the openpyxl module. I am using the append() method to insert the values row by row. But I want to insert the values cell by cell instead. I would also like to ...