A minimal CSV library for Clojure.
(light.csv/parse-string "First Name, Last Name\nDaniel,Keane\nEric,Blair"
:headers? true
:keyed? true)
(light.csv/parse-file "/path/to/file.csv"
:headers? true
:keyed? true
:remove-bom? true)
Results in:
({:first-name "Daniel" :last-name "Keane"}
{:first-name "Eric" :last-name "Blair"})
make tests