csv-sip: extracts data from a CSV file

[ data, gpl, library ] [ Propose Tags ]

extracts data from a CSV file - see README.md for more details


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0
Change log ChangeLog.md
Dependencies base (>=4.7 && <5), bytestring, conduit (>=1.3.4.2 && <1.4), containers, text, transformers [details]
License GPL-3.0-or-later
Copyright (C) 2022 Jonathan Lamothe
Author Jonathan Lamothe
Maintainer jonathan@jlamothe.net
Category Data
Home page https://codeberg.org/jlamothe/csv-sip
Bug tracker https://codeberg.org/jlamothe/csv-sip/issues
Uploaded by jlamothe at 2022-04-24T23:07:35Z
Distributions
Downloads 87 total (4 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2022-04-25 [all 1 reports]

Readme for csv-sip-0.1.0

[back to package description]

csv-sip

Copyright (C) Jonathan Lamothe jonathan@jlamothe.net

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Executive Summary

This library allows for reading and writing to and from CSV files in a streaming manner. Files can be read and written to on a row-by-row basis allowing larger files to be worked with, since the whole file doesn't have to be loaded to manipulate it. It is based on the [conduit](https://hackage.haskell.org/package/conduit] library.