From: Kevin A. <al...@se...> - 2001-08-28 16:01:30
|
-----Original Message----- From: Skip Montanaro [mailto:sk...@po...] Sent: Thursday, August 23, 2001 6:06 AM To: pyt...@li... Subject: Re: [Pythoncard-users] CSV for PythonCard Kevin> I was looking around for a comma separated values (CSV) module in Kevin> the Python Standard Libraries and didn't find one, so I went Kevin> hunting on Google. I came up with: Kevin> http://object-craft.com.au/projects/csv/ I have been using a Python-based CSV reader/writer by another person, but will be switching over to Dave Cole's extension module as I have time. I think it's the way to go. CSV is a hack of a format and doesn't yield itself to simple, quick parsing things like using regular expressions or string.split. I think it needs to be written in C. Skip |