Skip to content

Instantly share code, notes, and snippets.

@seymores
Last active September 14, 2015 17:28
Show Gist options
  • Save seymores/a89d7d9bbcf0f4648366 to your computer and use it in GitHub Desktop.
Save seymores/a89d7d9bbcf0f4648366 to your computer and use it in GitHub Desktop.
Mac refurbish deals scrapper
(ns mac-deals-checker.core
(:require [reaver :refer [parse extract-from text]]))
(def deal-url "http://www.apple.com/sg/shop/browse/home/specialdeals/mac")
(defn latest-deals-info
[]
(-> deal-url slurp parse (extract-from ".product" [:spec :price] "td.specs" text "span.current_price span span" text)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment