Skip to content

Instantly share code, notes, and snippets.

View jarohen's full-sized avatar
⚒️

James Henderson jarohen

⚒️
View GitHub Profile
@jarohen
jarohen / core.clj
Last active December 28, 2015 16:49 — forked from himerzi/core.clj
(ns weather.core
(:require [clj-http.client :as http]))
;; utility Functionsp
(def weather-api
"http://api.openweathermap.org/data/2.5/")
(defn weather-find [something]
(let [response (http/get (str weather-api "find")
{:query-params {:q something}