On Sat, 2007-04-28 at 18:55 -0700, johnny wrote: > Any Good tools to create CSV Files? ReportLab only creates pdf > files. I need something to create CSV files.
You mean something like the csv module that is part of Python's standard library? >>> import csv >>> help(csv) Help on module csv: NAME csv - CSV parsing and writing. FILE /usr/lib/python2.4/csv.py MODULE DOCS http://www.python.org/doc/current/lib/module-csv.html DESCRIPTION This module provides classes that assist in the reading and writing of Comma Separated Value (CSV) files [...] -Carsten -- http://mail.python.org/mailman/listinfo/python-list