-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
A pure OCaml library to read and write CSV files, LWT version. | ||
|
||
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. The library comes with a handy command line tool | ||
called csvtool for handling CSV files from shell scripts. This | ||
version can be used with the monadic concurrency library LWT. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
opam-version: "1.2" | ||
maintainer: "Christophe Troestler <[email protected]>" | ||
authors: [ "Richard Jones" | ||
"Christophe Troestler" ] | ||
tags: [ "csv" "database" "science" ] | ||
license: "LGPL-2.1 with OCaml linking exception" | ||
homepage: "https://github.com/Chris00/ocaml-csv" | ||
dev-repo: "https://github.com/Chris00/ocaml-csv.git" | ||
bug-reports: "https://github.com/Chris00/ocaml-csv/issues" | ||
doc: "https://Chris00.github.io/ocaml-csv/doc" | ||
build: [ | ||
[ "jbuilder" "subst" ] {pinned} | ||
[ "jbuilder" "build" "-p" name "-j" jobs ] | ||
] | ||
build-test: [["jbuilder" "runtest" "-p" name "-j" jobs]] | ||
depends: [ | ||
"csv" {= "2.0"} | ||
"jbuilder" {build} | ||
"base-bytes" | ||
"base-unix" | ||
"lwt" | ||
] | ||
available: [ ocaml-version >= "4.02.3" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/Chris00/ocaml-csv/releases/download/2.0/csv-2.0.tbz" | ||
checksum: "b21dff064ec2151923cce97564688ea5" |