Re: [Tutor] Excel files to Tab delim files

2006-01-06 Thread Carlo Capuano
) what is ITER? www.iter.org > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf > Of Srinivas Iyyer > Sent: Thursday, January 05, 2006 11:35 PM > To: tutor@python.org > Subject: [Tutor] Excel files to Tab delim files > > Dear group, > is t

Re: [Tutor] Excel files to Tab delim files

2006-01-05 Thread Danny Yoo
> >From that, you should be able to easliy produce a tab delimited file > (or anything else you want). There's even a 'csv' module in Python's Standard Library to handle some of the awkward cases in generating tab-delimited data: http://www.python.org/doc/lib/module-csv.html

Re: [Tutor] Excel files to Tab delim files

2006-01-05 Thread John Fouhy
On 06/01/06, Srinivas Iyyer <[EMAIL PROTECTED]> wrote: > Dear group, > is there any library available that would convert > over 2000 .xls files to tab delim text files. Check out pyExcelerator: http://sourceforge.net/projects/pyexcelerator The documentation is a bit light, but basically, if you

[Tutor] Excel files to Tab delim files

2006-01-05 Thread Srinivas Iyyer
Dear group, is there any library available that would convert over 2000 .xls files to tab delim text files. I have over 2000 Excel files and I want to convert them to tab delim files, which has become a pain in brain. Thanks Srini __