blob: 13c068977126429439b32b5432ea408127cb770a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
From the release announcement:
Python-DSV is a CSV file importer/exporter (DSV stands for
"delimiter-separated-values").
Features:
- Heuristics for automatically determining the format of the file.
- Discovers delimiter (comma, tab, colon, whatever).
- Discovers text-qualifier (single or double quote).
- Determines whether first row is header or data.
- Can use almost any character as delimiter.
- Correctly parses embedded quotes, newlines and delimiters.
- Optional wxPython dialog (ala MS Excel) for previewing data.
- Error-handling callbacks for malformed rows.
- 100% Python.
- Reasonably fast.
Author: Cliff Wells <CliffordDWells@yahoo.com>
WWW: http://www.sf.net/projects/python-dsv/
-- Johann Visagie <wjv@FreeBSD.org>
|