I\'m using win32com.client to write data to an excel file. This takes too much time (the code below simulates the amount of data I want to update excel with, and it takes ~2 sec
Note that you can set ranges via numeric adresses easily by using the following code:
cl1 = Sheet1.Cells(X1,Y1) cl2 = Sheet1.Cells(X2,Y2) Range = Sheet1.Range(cl1,cl2)