From: Neil H. <ne...@sc...> - 2001-08-28 21:35:52
|
[Skip] > 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. Why do you think it has to be written in C? The format is quite simple and speed is unlikely to be an issue. Requiring more extensions to be bundled with PythonCard to make it work will make it more trouble to set up correctly. Is CSV import / export something that needs to be solved now? Is it required by something else? Neil |