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 transform the "Book" type returned into a xlwt.Workbook. I would appreciate if someone can point me to an example.
|
feedback
|
There are no examples. It is not possible. Not with xlwt, nor with any other software. The XLS file structure is complicated, and doesn't act like a database to which you can append rows in a table of your choice. Whatever software you use has to make like a user with a copy of Excel and a keyboard: (1) "open the file" i.e. load the contents into memory (2) manipulate the in-memory information (3) "save" (which blows away the existing file and replaces it with a new file) or "save as" (which writes a new file and leaves the existing file unchanged). I told you this about 12 hours ago but here it is again: Visit this summary site. Points of interest:
| |||||||||||||||
feedback
|
|
Here's some sample code I used recently to do just that. It opens a workbook, goes down the rows, if a condition is met it writes some data in the row. Finally it saves the modified file.
| |||||||||||
feedback
|
|
You need
Keep in mind you can't overwrite cells by default as noted in this question. | |||
|
feedback
|