Re: [Tutor] how to do excel in python

2010-08-05 Thread Thomas C. Hicks
On Thu, 5 Aug 2010 10:08:59 -0400 invincible patriot wrote: > hi, > can any one tell me how can I access MS excel worksheet in python and > how can I access itz individual cells..?? > I have had good luck with the xlrd and xlwt modules, you can get them at www.python-excel.org. The Google

Re: [Tutor] how to do excel in python

2010-08-05 Thread Alan Gauld
"invincible patriot" wrote hi, can any one tell me how can I access MS excel worksheet in python and how can I access itz individual cells..?? There are several Excel specific modules - try Google - or, using the standard library, and if its practical for your case, you can use CSV files

Re: [Tutor] how to do excel in python

2010-08-05 Thread Chris Fuller
There are many ways. The simplest is to export the file to CSV and load that, but you'll only get one worksheet, and it's a big hassle to update the Excel file that way. You can save the spreadsheet as an ODF file, which is a fully documented XML format that Python can read and write easily,

Re: [Tutor] how to do excel in python

2010-08-05 Thread Robert
> hi, > can any one tell me how can I access MS excel worksheet in python and how > can I access itz individual cells..?? let me google that for you... ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mai

Re: [Tutor] how to do excel in python

2010-08-05 Thread Tim Golden
On 05/08/2010 15:08, invincible patriot wrote: hi, can any one tell me how can I access MS excel worksheet in python and how can I access itz individual cells..?? http://www.python-excel.org/ (First hit for python excel in Google) TJG ___ Tuto