Skip to content

Instantly share code, notes, and snippets.

@sw1nn
Created September 26, 2013 15:27
Show Gist options
  • Save sw1nn/6715790 to your computer and use it in GitHub Desktop.
Save sw1nn/6715790 to your computer and use it in GitHub Desktop.
csv-as-maps-seq
(defn csv-as-maps-seq [f]
(let [[header & data] (csv/read-csv (io/reader f))]
(map (partial zipmap header) data)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment