Tagged Questions

Library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform.

learn more… | top users | synonyms

11
votes
6answers
4k views

django excel xlwt

On a django site, I want to generate an excel file based on some data in the database. I'm thinking of using xlwt, but it only has a method to save the data to a file. How can get the file to the ...
6
votes
3answers
2k views

Preserving styles using python's xlrd,xlwt, and xlutils.copy

I'm using xlrd, xlutils.copy, and xlwt to open up a template file, copy it, fill it with new values, and save it. However, there doesn't seem to be any easy way to preserve the formatting of the ...
3
votes
1answer
202 views

Python Excel (xlrd, xlwt) - How to copy a style from one cell and put it on another

Specifically I'm trying to open an existing workbook, and write some data to it. However whenever I write the data it obliterates the borders on those cells. So I'm wondering if there's a way to ...
3
votes
3answers
176 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
3answers
1k views

Python XLWT attempt to overwrite cell workaround

Using the python module xlwt, writing to the same cell twice throws an error: Message File Name Line Position Traceback <module> S:\******** write ...
2
votes
2answers
92 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
459 views

Python xlwt - accessing existing cell content, auto-adjust column width

I am trying to create an Excel workbook where I can auto-set, or auto-adjust the widths of the columns before saving the workbook. I have been reading the Python-Excel tutorial in hopes of finding ...
2
votes
1answer
275 views

Serving a dynamically generated MS Excel files using django and xlwt fails in Internet Explorer

I am trying to use xlwt to create MS-Excel files from the contents of the database on my django site. I have seen several solutions here on stackoverflow, in particular this link: django excel xlwt ...
2
votes
2answers
158 views

Saving a temporary file

I'm using xlwt in python to create a Excel spreadsheet. You could interchange this for almost anything else that generates a file; it's what I want to do with the file that's important. from xlwt ...
2
votes
1answer
1k views

Python XLWT adjusting column widths

I am enormously impressed with the ease of use of XLWT, but there is one thing I have not figured out how to do. I am trying to adjust certain rows to the minimum width they would need to display all ...
2
votes
3answers
4k views

writing to existing workbook using xlwt

I am unable to find examples where xlwt is used to write into existing files. I have a existing xls file that I need to write to. When I use xlrd to read the file, I cant seem to figure out how to ...
2
votes
2answers
830 views

How to create an excel file with an autofilter in the first row with xlwt?

I am using Python 2.6 + xlwt module to generate excel files. Is it possible to include an autofilter in the first row with xlwt or pyExcelerator or anything else besides COM? Thanks
2
votes
3answers
2k views

write special characters into excel table by python package pyExcelerator/xlwt

Task: I generate formated excel tables from csv-files by using the python package pyExcelerator (comparable with xlwt). I need to be able to write less-than-or-equal-to (≤) and ...
1
vote
2answers
107 views

xlwt - How to add page breaks to an Excel File?

I'm trying to add page breaks whenever a column's value changes in Excel using Python and xlwt. Does anyone know how to do this? I found one example but they don't really say if their code works, ...
1
vote
1answer
95 views

Python XLWT: Write a list into a cell

I am trying to write a list into a cell using Python XLWT. Is this possible? I am currently getting an error: Exception: Unexpected data type <type 'list'> The code: for x in result: ...
1
vote
1answer
116 views

Grouping values, creating a sum and writing to excel, Python

i am putting together a script to take some data from an access table and write it to an excel table. In the process, I'm trying to format the excal table. I have pasted the output of the excel table ...
1
vote
2answers
153 views

Python: How to read all text file contents in multiple folders and save them into one excel file

I am currently working on this task and got stuck. Please give me your advices. The code I am writing below, it returns only the .txt file name from multiple folders, while I would like to print out ...
1
vote
1answer
103 views

Excel Combobox in Python xlwt module

Is this possible? Generation of Excel combobox in a cell using xlwt or similar module? When I load the xls using xlrd, then copy and save it using xlwt, the combobox from original xls is lost.
1
vote
1answer
91 views

xlwt: Is it possible to adjust the style of a cell after creating it?

After you do: sheet.write(0, 1, 'whatevs') Is it still possible to adjust the style of cell 0,1. The reason I am asking is that I have a list of errors I loop and I would like to color all the ...
1
vote
0answers
117 views

Reading background color of a cell of an excel sheet from python?

I am working in python and using xlwt. I have got a sample excel sheet and have to generate same excel sheet from python. Now the problem is heading columns are highlighted using some color from ...
1
vote
2answers
96 views

Is it possible to specify Date XFStyle without an exact format with xlwt?

I'm using Python-Excel xlwt to create a blank Excel spreadsheet for filling out in a spreadsheet. I would like to specify that a certain range of cells should be date formatted. I'm doing something ...
1
vote
1answer
366 views

writing and formatting datetime.date objects using xlwt

I'm having some trouble with this bit of code #data_list = some data wb = xlwt.Workbook() s = wb.add_sheet("Test Sheet") for c, data in enumerate(data_list): xf=None if ...
1
vote
1answer
229 views

xlrd: want to read sheets of several xl files and store in one list/array? (better way?)

I don't have much xp with xlrd/xlwt but I have managed to access one of the files I want to collect data from. I want to collect data from all files in the directory and move it to one sheet. I was ...
1
vote
2answers
124 views

Python: Rearranging csv lines with conditions

If I have few csv files as follows: a,1,2,3 type, max, min, avg b,4,5,6 <empty line> c,6,7,8 xxx,4,3,2 d,5,6,7 after reading the above csv file using csv reader, how do i dump the data to a ...
1
vote
4answers
667 views

python: creating excel workbook and dumping csv files as worksheets

I have few csv files which I would like to dump as new worksheets in a excel workbook(xls/xlsx). How do I achieve this? Googled and found 'pyXLwriter' but it seems the project was stopped. While Im ...
1
vote
1answer
228 views

How can an image be retrieved from an excel worksheet using python xlrd

I am using the xlrd python excel library python-excel. I can read my excel workbook allright (I must say their tutorials are pretty good). BUT I can't retrieve an image stored in a worksheet and thats ...
1
vote
2answers
909 views

Facing problem with XLWT and XLRD - Reading and writing simultaneously

I am facing a problem with xlrd and xlwt. Pasting the sample code below. from xlwt import Workbook, Formula, XFStyle import xlrd book = Workbook() sheet1 = book.add_sheet('Sheet 1') myFontStyle = ...
1
vote
2answers
768 views

Python - excel - xlwt: colouring every second row

i just finish some MYSQL to excel script with xlwt and I need to colour every second row for easy reading. I have tried this: row = easyxf('pattern: pattern solid, fore_colour blue') for i in ...
1
vote
1answer
586 views

merge excel cells using pyExcelerator

I want to merge two cells in excel using pyExcelerator , ws.write_merge(r1=0,r2=1,c1=0, c2=0, label='test1', style=style1) #merge cell1(row=0, column=0) with cell2(row=1, column=0) ...
0
votes
1answer
47 views

Formatting number so that zeros are dashes (-) with xlwt

I'm writing excel sheets with xlwt, and it's working great except for one little thing. I would like to display the number zero as a dash (-), the way that it does with accounting. However, I don't ...
0
votes
1answer
46 views

How to save an excel file and attach it to new object?

I have a django project and I've created an excel file using xlwt(end snippet of file generation). export_wb.save(output) output.seek(0) response = HttpResponse(output.getvalue()) ...
0
votes
0answers
86 views

Insert bitmap image in Excel file(xlwt) in GAE

I need to insert an Bitmap image in Excel file(creating using xlwt). i tried to insert using insert_bimap() method but it return IO Error. Error: Traceback (most recent call last): File ...
0
votes
1answer
38 views

How do we preserve Shared Workbook property settings using xlrd,xlwt & xlutils?

When I open a Shared Workbook with Multiple Edit enabled, I loose the settings while saving the file using xlwt. Here is the code which I am trying, but this do not save the shared workbook ...
0
votes
0answers
36 views

Python xlwt - making a column readonly (cell protect)

Is there a way to make a particular cell read-only/write protected in python xlwt? I know there's is a cell_overwrite_ok flag which does not allow to overwrite contents of cells (all cells) but can ...
0
votes
1answer
44 views

python xlwt: how to have header vrow repeat when printing

I'm writing sheets in xlwt with a header row and a few hundred data rows. I'd like the header row to print at the top of every printed page, when I print from Excel. Can I effect this setting from ...
0
votes
2answers
111 views

Adding dollar symbol in Python - pyexcelerator/ xlwt & Gae

I'm trying to add '$' Symbol in Excel file using python. I have code the number format as :'"$"#,##0.00' (Code below). Run the code and Download the Excel file. But When i open the excel file it ...
0
votes
0answers
91 views

python xlwt borders on cells

I am using python xlwt I know it is possible to border cell in excel with style function, on single cell. But is it possible to create borders on all cells from x1,y1 to x2,y2? thank you
0
votes
2answers
125 views

Is there any way to edit an existing Excel file using Python preserving formulae?

I am trying to edit several excel files (.xls) without changing the rest of the sheet. The only thing close so far that I've found is the xlrd, xlwt, and xlutils modules. The problem with these is it ...
0
votes
1answer
39 views

Does xlwt module support INDIRECT?

I used the following codes, but it doesn't work. I checked the xls. The formula is filled in correctly, but remains as a text entry. If to press ENTER to active this cell, it works. sheet1.write(1, ...
0
votes
2answers
134 views

Python Parsing - Multiple Emails in One Text File

I receive similar emails from multiple senders and use regular expressions m and n below to pull out needed strings. That part is working fine. Regular expression o however is what has me confused. ...
0
votes
2answers
142 views

How can i store excel file created using pyExcelerator as input for db.BlobProperty()

How can i store excel file created using pyExcelerator as input for db.BlobProperty() ? Actally what i need is that Using taskqueue program will create a excel file and store it in the datastore. And ...
0
votes
1answer
120 views

Has anyone been able to write out UTF-8 characters using python's xlwt?

I'm trying to write data to an excel file that includes Japanese characters. I'm using codec.open() to get the data, and that seems to work fine, but I run into this error when I try to write the ...
0
votes
2answers
179 views

Adding links to another cell using the xlwt module for Python

I am exporting some information to an excel workbook using the awesome xlwt module for Python. I know that I can have a certain cell contain a hyperlink that points to an external site like this: ...
0
votes
2answers
285 views

xlwt writing excel file python problem

So I have to two separate lists of data, wordlist and digitlist. And both sets have related sets of data so wordlist[1] is related to digitlist[1]. The data sets are shown below: seglist = ['aaa111', ...
0
votes
0answers
182 views

Using xlrd and xlwt to combined multiple spreadsheets in python

I am doing a project where I need to take data from 1000+ spreadsheets, reformat and then recombine into one spreadsheet. I am using xlrd and xlwt to do this and have been successful taking data from ...
0
votes
2answers
232 views

Excel file writing using xlwt+Google app engine - Getting IOError: invalid mode: wb

In my application i'm trying to write the data to excel file using xlwt API. When i run the GAE app, i got following error . Please help me to fix this bug. Traceback (most recent call last): File ...
0
votes
2answers
123 views

Problem exporting an xls file for user download with django and HttpResponse

I'm currently creating a spreadsheet using xlwt and trying to export it out as an HttpResponse in django for a user to download. My code looks like this: response = HttpResponse(mimetype = ...
0
votes
1answer
111 views

write array starting from specific column to new workbook using xlwt

I am trying to write an array (data = [][]) to a worksheet I will create using xlwt. My question is can I specify a column to start from? I am planning to use a for loop to iterate through the array ...
0
votes
1answer
172 views

Writing HTML with Python xlwt module

I'm using xlwt to write an Excel formatted file, and I want to include html in a cell. What parameters do I need to provide to hint that Excel should render the content?
0
votes
1answer
411 views

how to extract data from one excel workbook and output to another using python xlrd/xlwt?

I am trying to write a script which will automate a copy/paste of employee time sheets from several files to one compiled file. Since they are time sheets with project codes some cells are left blank ...

1 2