ultra-csv icon indicating copy to clipboard operation
ultra-csv copied to clipboard

All in one pixie fairy sparkling Clojure tool for easily reading and writing csv files

Results 3 ultra-csv issues
Sort by recently updated
recently updated
newest added

```clojure (defn read-csv [path as-vector?] (let [rows (csv-reader/read-csv path) final-rows (if (true? as-vector?) (vectorize-rows rows) rows)] (csv-reader/close! rows) final-rows)) ``` I have this function called but when I try to...

Thanks for this library! icu4j adds (expanded) 42.5MB (~12MB in jar) to any application that includes ultra-csv. The only thing it is using is CharsetDetector and there is no way...

Hello, The API documentation states that the default for read-csv is to keywordize the fields, but it is not doing that upon import. In order to get it to work...