Skip to content

Instantly share code, notes, and snippets.

@dentarg
Forked from jage/README.md
Created April 25, 2016 19:02
Show Gist options
  • Save dentarg/2c6b4fa3ae804f5838bc214e1e432b29 to your computer and use it in GitHub Desktop.
Save dentarg/2c6b4fa3ae804f5838bc214e1e432b29 to your computer and use it in GitHub Desktop.
(ns clojure-twingly-search-api.core
(:gen-class))
(defn get-posts [keyword]
(->
(new com.twingly.search.client.UrlConnectionClient(System/getenv "TWINGLY_SEARCH_KEY"))
(.makeRequest (.build (com.twingly.search.QueryBuilder/create keyword)))
(.getPosts)))
; Lie, limited to 1000
(defn print-all-post-urls [keyword]
(doseq [post (get-posts keyword)]
(println (.getUrl post))))
(defn -main
[& args]
(print-all-post-urls (first args)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment