Created
November 1, 2010 08:34
-
-
Save antoniogarrote/657830 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def *reg-nos* [16738 17288 18162 18776 18868 19116 19223 19505]) | |
(def *df-url* "http://www.mapa.es/agricultura/pags/fitos/registro/sustancias/pdf/") | |
(def *pdfs* (map #(list (str *df-url* % ".pdf") %) *reg-nos*)) | |
(time | |
(doseq [[pdf id] *pdfs*] | |
(spit (str id ".pdf") (slurp (java.net.URL. pdf))))) | |
;; Elapsed time 667.91 msecs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment