Any Good tools to create CSV Files?

Carsten Haese carsten at uniqsys.com
Sat Apr 28 22:07:46 EDT 2007


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





More information about the Python-list mailing list