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.2.tbz
sha256=0a2a6d3be1b2502661f7601dd2c38951368057bc2a336312f16e6f1262939cd2
md5=a93ec5093a358c75ab42563b0197bbf2

README.md.html

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

Uninstall

With OPAM:

opam remove csv
opam remove csv-lwt

Manually (from the source directory):

dune uninstall csv
dune uninstall csv-lwt

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.

OCaml

Innovation. Community. Security.