package csv-lwt

  1. Overview
  2. Docs
A pure OCaml library to read and write CSV files, LWT version

Install

Dune Dependency

Authors

Maintainers

Sources

csv-2.4.tbz
sha256=13fec48177f2658c4c62edf04f5edd055962fbf2abb4c3e372d268dd2ab2a98e
sha512=a8a952315950fc7fcca36c758b69618296060fd4eab3140ac364ad62172cf665b3c0c9d892ddb586929217466a42f33f432e32e3bd0c1e549ea22bef6ef8a900

Description

This is a pure OCaml library to read and write CSV files, including all extensions used by Excel — e.g. quotes, newlines, 8 bit characters in fields, "0 etc. A special representation of rows of CSV files with a header is provided. This version can be used with the monadic concurrency library LWT.

Tags

csv database science

Published: 10 Dec 2019

README

README.md

OCaml CSV

The comma-separated values format — or CSV for short — is a simple tabular format supported by all major spreadsheets. This library implements pure OCaml functions to read and write files in this format (including Excel extensions) as well as some convenience functions to manipulate such data.

Compile & install

The easiest way to install this library is to use OPAM:

opam install csv

for the standard version and

opam install csv-lwt

for the LWT one. If you prefer to compile and install by hand, make sure you have dune and run

dune build @install
dune install csv
dune install csv-lwt

For the command line manipulation utility, do

opam install csvtool

or

dune install csvtool

Uninstall

With OPAM:

opam remove csv
opam remove csv-lwt
opam remove csvtool

Manually (from the source directory):

dune uninstall csv
dune uninstall csv-lwt
dune uninstall csvtool

Documentation

The documentation for the Csv (resp. Csv_lwt) module can be found online (resp. here) or in csv.mli (resp. csv_lwt.mli).

Also see the examples.

Dependencies (6)

  1. lwt >= "2.4.7"
  2. base-unix
  3. base-bytes
  4. dune
  5. csv = version
  6. ocaml >= "4.03.0"

Dev Dependencies

None

Used by

None

Conflicts

None