Tagged Questions
The pyexcelerator tag has no wiki summary.
3
votes
2answers
778 views
Use pyExcelerator to generate dynamic Excel file with Django. Ensure unique temporary filename
I'd like to generate a dynamic Excel file on request from Django. The library pyExcelerator does this, but I haven't found any way to use the contents of the Excel file without generating a ...
2
votes
2answers
831 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
2answers
2k views
How to apply bold style to a specific word in excel file , using python?
i am using pyexcelerator python module to generate excel files,
i want to apply bold style to part of cell text, but not to the whole cell.
how to do it ?
1
vote
2answers
853 views
pivots using pyExcelerator/xlrd
How can I go about creating a worksheet (within an excel workbook) with a pivot table using python libs like pyExcelerator / xlrd? I need to generate a daily report that has a pivot table to summarize ...
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)
...
1
vote
4answers
2k views
pyExcelerator or xlrd - How to FIND/SEARCH a row for the given few column data?
Python communicating with EXCEL... i need to find a way so that I can find/search a row for given column datas. Now, i m scanning entire rows one by one... It would be useful, If there is some ...
0
votes
0answers
89 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
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
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
2answers
557 views
How to color the entire row using xlwt util of pyexcelerator
The util talks about a funtion called this
style0 = xlwt.easyxf(
'font: name Times New Roman, colour_index red'
)
there is color red instead of color_index too .
Is there any provision to color ...
0
votes
2answers
784 views
Adding percentage in python - xlwt / pyexcelerator
just a quick question, how to add percent sign to numbers without modifying number. I have tried format percent with myStyleFont.num_format_str = '0.00%' but it multiplies with 100 but I need just to ...
0
votes
2answers
567 views
pyExcelerator has problems reading some files
I've got a problem using pyExcelerator when reading some xls-files.
There're some python scripts i wrote, that use this library to parse XLS-files and populate database with info.
The templates for ...