buch_des_monats/src/buchdesmonats/sources/mojoreads.clj

9 lines
271 B
Clojure
Raw Normal View History

(ns buchdesmonats.sources.mojoreads
(:require [net.cgrand.enlive-html :as html]))
(defn find-cover-image [url]
(-> (html/html-resource (java.net.URL. url))
(html/select [:div.mojoreads-page-content-container :img])
(first)
(get-in [:attrs :src])))