Spreadsheet
From HaskellWiki
(Difference between revisions)
(overview over existing packages) |
(csv-enumerator, ssv) |
||
| (3 intermediate revisions not shown.) | |||
| Line 2: | Line 2: | ||
There are various (small) projects for this task: | There are various (small) projects for this task: | ||
| - | * | + | * {{HackagePackage|id=spreadsheet}} package for reading and writing CSV files lazily |
| - | * | + | * {{HackagePackage|id=csv}} package for reading and writing CSV files in a strict way |
| + | * {{HackagePackage|id=bytestring-csv}} package for reading and writing CSV files (also strict) | ||
| + | * {{HackagePackage|id=csv-enumerator}} package for reading and writing CSV files using [[enumerator]]s | ||
| + | * {{HackagePackage|id=ssv}} package | ||
* http://www.xoltar.org/languages/haskell.html, http://www.xoltar.org/languages/haskell/CSV.hs : Reading CSV files in a strict way | * http://www.xoltar.org/languages/haskell.html, http://www.xoltar.org/languages/haskell/CSV.hs : Reading CSV files in a strict way | ||
| - | [[Category: | + | [[Category:Libraries]] |
Current revision
It's a common task to exchange spreadsheet data in comma-separated-value files (CSV). There are various (small) projects for this task:
- spreadsheet package for reading and writing CSV files lazily
- csv package for reading and writing CSV files in a strict way
- bytestring-csv package for reading and writing CSV files (also strict)
- csv-enumerator package for reading and writing CSV files using enumerators
- ssv package
- http://www.xoltar.org/languages/haskell.html, http://www.xoltar.org/languages/haskell/CSV.hs : Reading CSV files in a strict way
