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

Higher level tools for working with CSV data and files

Results 22 semantic-csv issues
Sort by recently updated
recently updated
newest added

We have a CSV table which contains lines (incl. the header) like: ``` name ,key ``` It appears that semantic-csv currently turns `'name '` into `':name '`, i.e. a keyword...

## Set up A csv file titled "example.csv" that contains: ``` first-column,second-column X,1 ``` A clojure file called `example/csv.clj` that contains: ```clojure (ns example.csv (:require [semantic-csv.core :as sc])) (defn manually-cast-columns...

Main advantage is that structs preserve order information, so don't have to worry about header order changing on input/output so much. A case of only adding information? Thus growth?

Some questions about how this would work: * Would it just be the top level collection containers, or would it be included on individual records? * What are the performance...

I changed the `zipmap` default method so that it will always create a map with all the passed keys. Another solution can be: ```clojure (defn pad [n coll val] (take...

This actually isn't on us but rather on marginalia. I've created an issue for this here: https://github.com/gdeer81/marginalia/issues/164. If this doesn't get fixed we'll need to look for alternatives.

@mahinshaw I just found this note I left myself... Not sure if it still makes sense or not but here it is: There was this chunk of code in the...

We have a really cool `semantic-csv.impl.core/clone-var` macro that expands to a def which refers to the original var, but copied over the docstring, argslist and everything. I don't have the...

enhancement

Would be good to have tests for the relevant cljs code using doo, cljs.test and whatever else folks use for this sort of thing. I got stuck trying to do...

help wanted

It would be nice to have something like `slurp-async` (see #54) that puts each row one by one on a go channel, perhaps using the transducers and `pipeline`. I don't...

enhancement
help wanted
question