Skip to content

Instantly share code, notes, and snippets.

@deltamualpha
Created July 11, 2013 01:37
Show Gist options
  • Save deltamualpha/5971827 to your computer and use it in GitHub Desktop.
Save deltamualpha/5971827 to your computer and use it in GitHub Desktop.
There has got to be a better way.
(defn get-attributes [html]
(map #(into {} %)
(map #(remove nil? %)
(map #(if (dom/attributes? %) [(:name (dom/attributes %)) (:value (dom/attributes %))])
(map dom/node-seq
(xpath/lookup-nodeset "//form[@class=\"download\"]" html))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment