Library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform.
1
vote
1answer
10 views
Formatted headers/footers? Colour Code
I've found out the way to format header and footer using xlwt (see https://groups.google.com/forum/?fromgroups#!topic/python-excel/3hZP_hK_LSc),
I'm looking for docs or example on how to define the ...
0
votes
1answer
30 views
In python removing rows from a excel file using xlrd, xlwt, and xlutils
Hello everyone and thank you in advance.
I have a python script where I am opening a template excel file, adding data (while preserving the style) and saving again. I would like to be able to remove ...
1
vote
1answer
52 views
Python : Write an Excel file with columns from another Excel file
I have an Excel file containing a varying number of columns, I would like to loop through certain columns (from their header row value) of that file using Python, then write (copy) those columns to ...
2
votes
1answer
25 views
export excel with python using xlwt and adjusting width [duplicate]
i have exported my list using xlwt :
response = HttpResponse(mimetype="application/ms-excel")
response['Content-Disposition'] = 'attachment; filename=Countries.xls'
wb = xlwt.Workbook()
ws1 = ...
-1
votes
1answer
19 views
Need to save Data from mulitiple instances of a class to different columns in the same excel file using xlwt
I am making this program. The idea is to save the time from a stopwatch to an excel sheet. But it would be better to save them all into one excel sheet. Right now it saves to multiple ones. I just ...
1
vote
1answer
46 views
Python: Modifying Excel files while maintaing formatting
Is there any way to modify a few cells in an existing Excel file without losing formatting, and without using xlutils?
I have access to xlwt, and xlrd, but not xlutils.
Thank you!
3
votes
1answer
59 views
text orientation on excel(individual cell) in python
I am trying to write some data on excel file, and want to keep first row text orientation as 90 degree.
style = xlwt.easyxf('font: bold 0, color black, underline 0,height 250; alignment: horizontal ...
2
votes
1answer
30 views
Conditional Formatting xlwt
I have seen some posts that say you can NOT perform conditional formatting using xlwt, but they were rather old. I was curious if this has evolved?
I have been searching for about half a day now. ...
2
votes
1answer
23 views
Always Show 4 Decimal Places
Is it possible to force a cell to always show 4 decimal places using xlwt? Regardless of the number actually present after the decimal place. I have done some searching and I can find a string to ...
1
vote
2answers
75 views
Writing console output(space seperated text) to seperate columns of excel sheet using Python
I have a console output , which has multiple rows of space separated strings.for ex-
Hi everyone
Hello to all
Welcome to python
I want to write them into separate rows of excel file ...
-3
votes
1answer
82 views
Lost Excel Graph after saving Excel file [closed]
I am trying to work with Excel files under a *nix environment.
I have checked this behaviour in openpyxl but do we have any workaround to resolve this issue?
I have excel Sheet (xlsx or xls) which ...
1
vote
0answers
42 views
Python - Apply the formatting of an existing workbook to another workbook
I am relatively new to coding in Python, and here is my problem:
1- When I update data of an existing .xlsx file (using openpyxl), the outcome is a .xlsx that looses all the previous formatting. I've ...
0
votes
1answer
45 views
how to compress a bmp image in unix
I need to insert an image into an xls using the xlwt module of python. And the xlwt module seems to support only .bmp images.
So which is the best way to compress a .bmp image in unix without much ...
2
votes
1answer
207 views
how to insert jpeg image into excel sheet in unix
I am able to insert bmp images using insert_bitmap command of the xlwt module in python using the following code:
import xlwt
from PIL import Image
book = xlwt.Workbook()
sheet3 = ...
1
vote
0answers
162 views
Python Excel Formulas (XLRD, XLWT) and File Path References
I am currently at the brink of migrating our file server to a new server, unfortunately our Accounting department has made excel formulas that references alternate excel files sums in random cells.
...
3
votes
2answers
235 views
does xlwt support xlsx Format
I have searched into google and found some contradiction. Does xlwt support xlsx file (MS office 2007). I heard that xlwt 0.7.4 support xlsx file. Does anyone tried xlsx file writing operation with ...
1
vote
2answers
143 views
How to set color of text using xlwt
I haven't been able to find documentation on how to set the color of text. How would the following be done in xlwt?
style = xlwt.XFStyle()
# bold
font = xlwt.Font()
font.bold = True
style.font = ...
1
vote
1answer
93 views
AttributeError: 'Sheet' object has no attribute 'row_len'
I'm trying to run this script and get an error:
Traceback (most recent call last):
File "nimeKoostaja.py", line 19, in <module>
wb = copy(book)
File ...
1
vote
1answer
157 views
Importing xlwt generated excel files into SAS
I converted a bunch of csv files into excel files using xlwt.
After that I need to import these excel files to SAS (statistical software).
On first try SAS throws an error saying that file format is ...
0
votes
2answers
124 views
no math module python [closed]
I am working in SunOS2.10.I pretty need xlwt(xlrd) modules in python(default ver. 2.4.6).In one folder of admin user, I have found Python 2.7.1, so if I write the full path to it I can use it instead ...
0
votes
0answers
87 views
using xlwt to set borders to the entire excel table
Hi!
I'm using Python's xlwt package to make excel documents. What i need is to put a border around every cell in the document (that is between the data).
Let's say i have written in a cell at row 1 ...
0
votes
1answer
62 views
xlwt module - saving xls unicode error
I'm trying to save some text with xlwt module, creating new xls document and saving text there.So far it worked great, until I came across unicode text: for example simple string '80°'.
When I call ...
2
votes
1answer
100 views
Python XLWT Foreign Key values
I am exporting database field to Excel file, everything works fine but my foreign key field is being printed as foreign key ID and not the actual value.
How can I fix it?
here is my code:
book ...
0
votes
0answers
124 views
loop contingent on parameters for excel sheet python
How do I write a function that takes an unknown amount of args and loops over that user's input to create formatted excel worksheets from 1 or more databases?
For example, ws2 = ...
1
vote
1answer
158 views
How to read all text file contents in a folder and copy those contents as rows into one excel file
I have 100 txt files in a folder (named as pos). I would like to copy all the file contents and paste them as rows in an excel file. I found some codes from stackoverflow, but they are not working. ...
1
vote
1answer
46 views
How can I add a few hyperlinks in the same cell with xlwt?
I tried:
link = ''
for photo in photo_list:
link += 'HYPERLINK("' + photo + '"; "Title");\n'
worksheet.write(row, col, xlwt.Formula(link))
But it put only first link.
2
votes
1answer
71 views
UnicodeDecodeError in Google app Engine python
I am writing excel file in google app engine , I am getting following error , whats wrong with the code ?
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd0 in position 706: invalid continuation ...
0
votes
1answer
93 views
Why wont my data save to xls?
I have written a pretty simple web scraper using scrapy. I would like to save the scraped data to an .xls file, as I have an existing module to read an xls and sort the scraped data. But I've hit what ...
0
votes
0answers
81 views
Generating a complex xls file from a complex dictionary in django
I have a dictionary structured like this.
data_dict = {'man_id':{'news_name_one':
'zc_one':{'id':2, 'name': 'nameone', 'adrs':'adrsone', 'state':'stateone'}
...
0
votes
1answer
510 views
editing existing excel workbook using xlrd, xlwt and xlutils
How to edit and save the data in an existing excel workbook using xlrd, xlwt and xlutils module?
could someone please provide a sample code to edit and save the data in excel workbook?
I am trying to ...
0
votes
0answers
178 views
Attendance tracker using Excel and Python
I'm Vice Wing Commander at the Air Force Detachment I go to here at college. One responsibility of my job is taking attendance. Within the wing there are four squadrons. Each squadron turns in ...
0
votes
0answers
148 views
Writing to existing workbook
I was wondering if someone could help me out with this. I want to make changes to an existing .xls file using xlwt/xlrd/xlutils. I took a look at this question and tried the two answers at the bottom ...
0
votes
1answer
82 views
Excel formulas needs to be clicked in order to get evaluated
I've wrote an python program that basically reads excel formulas in form of `=FORMULA and write it into an output excel. Here is my code:
source=open_workbook('source.xls',formatting_info=True)
wb = ...
0
votes
1answer
74 views
export xlwt to open an excel sheet
i am using "import xlwt" to create new excel sheet but it is throwing the following error?
Traceback (most recent call last):
File "xl.txt", line 1, in
import xlwt
ImportError: No module named ...
0
votes
1answer
214 views
Change Int64Index to Index and dtype=int64 to dtype=object
I am trying to write pandas DataTables and Series to xlwt Worksheet objects. All goes well except if I try to write numpy.int64 data, in which case xlwt gasps. Changing int64 to float64 in my data and ...
1
vote
1answer
131 views
read csv file with header and data, and convert to xls file
I have csv data files with 2-line header, unknown number of rows and cols. For example
"x", "y"
"unit x", "unit y"
1, 2
3, 4
I use the following code to read the csv file and write it to a xls file
...
0
votes
1answer
508 views
How to copy a row of Excel sheet to another sheet using Python
I want to compare the value of a given column at each row against another value, and if the values are equal, I want to copy the whole row to another spreadsheet.
How can I do this using Python?
...
0
votes
2answers
322 views
Getting import error in Python 2.7 when tried with
I need to import classes from xlwt module, accordingly I have tried getting error. Why so?
Can you guide me here?
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All ...
-3
votes
5answers
322 views
Is it possible to push data from Excel sheet using Python into a database?
I have a requirement where using Python I need to write into excel cell , the data which i will be collecting from web page.
But not getting an option how to do that.
any idea from you people?
As ...
0
votes
1answer
40 views
Here I have some confusion regarding the Python package installations
Hi I just installed Python 2.7 as I have some requirements to code. Now I am also interested to install some python packages too as per my requirement.
I have downloaded some tar.zip packages like ...
1
vote
1answer
314 views
Format individual characters in a single Excel cell with python
I am using xlrd, xlwt, and xlutils on the Windows Vista OS with Python 2.7. I have a set of DNA sequences in an excel worksheet that are 100 characters long, with each sequence in a single cell. I am ...
0
votes
1answer
84 views
Python output mistakes caused by csv, txt, and xls switching date formats (MM/DD/YYYY and M/D/YY)
I wrote a python script that takes a csv which has dates in an M/D/YYYY format, then matches them with dates in an xlwt generated .xls file. I was wondering why only some dates are matched and then I ...
1
vote
1answer
115 views
right to left excel page layout in python xlwt
How can set the sheet layout ( right-to-left ) by using xlwt ?
i am using xlwt for writing an excel sheet, but my data is right to left and i want to set sheet layout right to left ( same as ...
1
vote
1answer
100 views
header/footer in xlwt (python).
Hi!
I'm creating excel files with python, using the xlwt package. I was wondering, is there any way to set specific header / footers to every sheet using this module?
Thank you very much!
-1
votes
1answer
132 views
excel column width with xlwt upper and lowercase text
Hi. I'm using xlwt package with Python to make an application that writes to excel files.
I have a function that returns the desired width of a cell so i can make the cell big enough to fit the text. ...
1
vote
1answer
364 views
python xlutils : formatting_info=True not yet implemented
I've got simple code to copy files with xlutils, xlrd, xlwt (downloaded new libraries from python-excel.org) with not loosing formatting. I've got an error as below:
from xlwt.Workbook import *
from ...
2
votes
2answers
211 views
Python “IndexError: list index out of range” | Goal: Read 1 excel file & append data to a 2nd excel file
Goal of the script is to take the data from an excel file that is generated daily from a cron job & append that data to the bottom of a 'master' excel file.
Here is where I am right now:
# Find ...
1
vote
1answer
85 views
Reading an Excel object retrieved using urllib2
I am getting an Excel file using urllib2 and saving into response below. I want to be able to process this excel file using xlrd or similar. I included some info below, let me know if I can provide ...
0
votes
1answer
97 views
Insert image in Excel using xlwt in GAE
I tried:
sheetLoopParam.insert_bitmap(os.path.abspath("static/PLL_diagram2_small.bmp"), 12, 0)
but it says:
IOError: [Errno 13] file not accessible: ...
1
vote
0answers
47 views
Python xlwt module: Inserting images and controlling the dimensions
Are there other ways to insert images in an Excel worksheet other than worksheetName.insert_bitmap using Python xlwt module?

