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 trying out 'pyXLwriter' would like to know are there any alternatives/suggestions/modules?

Many Thanks.

[Edit]

Here is my solution: (anyone has much leaner, much pythonic solution? do comment. thx)

import glob
import csv
import xlwt
import os

wb = xlwt.Workbook()


for filename in glob.glob("c:/xxx/*.csv"):
    (f_path, f_name) = os.path.split(filename)
    (f_short_name, f_extension) = os.path.splitext(f_name)
    ws = wb.add_sheet(str(f_short_name))
    spamReader = csv.reader(open(filename, 'rb'), delimiter=',',quotechar='"')
    row_count = 0
    for row in spamReader:
        for col in range(len(row)):
            ws.write(row_count,col,row[col])
        row_count +=1

wb.save("c:/xxx/compiled.xls")

print "Done"
link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Not sure what you mean by "much leaner, much pythonic" but you certainly could spruce it up a bit:

import glob, csv, xlwt, os
wb = xlwt.Workbook()
for filename in glob.glob("c:/xxx/*.csv"):
    (f_path, f_name) = os.path.split(filename)
    (f_short_name, f_extension) = os.path.splitext(f_name)
    ws = wb.add_sheet(f_short_name)
    spamReader = csv.reader(open(filename, 'rb'))
    for rowx, row in enumerate(spamReader):
        for colx, value in enumerate(row):
            ws.write(rowx, colx, value)
wb.save("c:/xxx/compiled.xls")
link|improve this answer
feedback

You'll find all you need in this xlwt tutorial. This libraries (xlrd and xlwt) are the most popular choices for managing Excel interaction in Python. The downside is that, at the moment, they only support Excel binary format (.xls).

link|improve this answer
yea, looking thorugh the tutorial pdf. an idea clicked where I could create an xls files with many sheets and use the python csv reader module/method to dump line by line into the sheets. :) – siva Apr 18 '11 at 16:36
Yes, this is pretty much the idea. I would advise you to create the sheets when you need them, not beforehand. – Sergio Apr 18 '11 at 16:48
feedback

I always just write the Office 2003 XML format through strings. It's quite easy to do and much easier to manage than writing and zipping up what constitutes a xlsx document. It also doesn't require any external libraries. (though one could easily roll their own)

Also, Excel supports loading CSV files. Both space delimited or character delimited. You can either load it right in, or try to copy & paste it, then press the Text-To-Columns button in the options. This option has nothing to do with python, of course.

link|improve this answer
thanks.. but not if I have 20 over csv which I going to open one by one and doing the cut and paste.. hehe :) – siva Apr 18 '11 at 16:23
To get a blank template file I can play with, I open up Excel, enter Test in A1, then use save as on the blank spreadsheet, select XML Spreadsheet 2003 as the filetype, then give it a name. You'll know what to do when you see the XML structure for it. – adorablepuppy Apr 18 '11 at 16:30
This sounds very interesting! – Sergio Apr 18 '11 at 23:07
feedback

Try Sikuli. It's a Jython project, but you can use it to automate any GUI tasks.

link|improve this answer
interesting.. could do many others as well. In python there is a pywinauto module which would do pretty much the same but involves a lot of codings as compared to Sikuli's screenshot capture. – siva Apr 19 '11 at 8:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.