Skip to content

Instantly share code, notes, and snippets.

@slipset
Last active March 29, 2017 06:40
Show Gist options
  • Select an option

  • Save slipset/e6bce1b8f8443d3f98a95f20df39336d to your computer and use it in GitHub Desktop.

Select an option

Save slipset/e6bce1b8f8443d3f98a95f20df39336d to your computer and use it in GitHub Desktop.
(ns csv-parser.core
(:require [clojure.string :as str]
[clojure.data.csv :as csv]
[cheshire.core :as json]))
(->> "./foo.csv"
slurp
csv/read-csv
rest
(map #(zipmap [:id :first-name :given-name :yob] %))
json/encode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment