markdown rss中的关键词统计来自clojure的快乐

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown rss中的关键词统计来自clojure的快乐相关的知识,希望对你有一定的参考价值。

(ns alexcoding.bf.futuretwitterfeed
  "Examples for futures"
  (:require (clojure [xml :as xml]))
  (:require (clojure [zip :as zip]))
  (:import (java.util.regex Pattern)))

(defn feed->zipper [uri-str]
  (->> (xml/parse uri-str) ;
       zip/xml-zip)) ;

(defn normalize [feed] ;
  (if (= :feed (:tag (first feed)))
    feed
    ;; Returns the loc of the leftmost child of the node at this loc
    (zip/down feed)))

(defn feed-children [uri-str]
  (->> uri-str
       feed->zipper
       normalize
       zip/children
       (filter (comp #{:item :entry} :tag))))

(comment
  ;; 括号看起来更直观?
  (filter (comp #{:item :entry} :tag)
         (zip/children
           (normalize
             (zip/xml-zip (xml/parse "http://www.ruby-lang.org/en/feeds/news.rss"))))))

(defn title [entry]
  (some->> entry
           :content
           (some #(when (= :title (:tag %)) %))
           :content
           first))

(defn count-text-task [extractor txt feed]
  (let [items (feed-children feed)
        re (Pattern/compile (str "(?i)" txt))]
    (->> items
         (map extractor)
         (mapcat #(re-seq re %))
         count)))

(defmacro as-futures [[a args] & body]
  (let [parts (partition-by #{'=>} body)
        [acts _ [res]] (partition-by #{:as} (first parts))
        [_ _ task] parts]
    `(let [~res (for [~a ~args] (future ~@acts))]
       ~@task)))

(defn occurrences [extractor tag & feeds]
  (as-futures [feed feeds]
              (count-text-task extractor tag feed)
              :as results
              =>
              (reduce (fn [total res] (+ total @res))
                      0
                      results)))

(comment

  (count-text-task
    title
    "Erlang"
    "http://feeds.feedburner.com/ElixirLang")
  ;;=> 0

  (count-text-task
    title
    "Elixir"
    "http://feeds.feedburner.com/ElixirLang")
  ;;=> 14

  (count-text-task
    title
    "Yak"
    "http://blog.fogus.me/feed/")
  ;;=> 1

  (count-text-task
    title
    "Ruby"
    "http://www.ruby-lang.org/en/feeds/news.rss")

  (occurrences title "released"
               "http://blog.fogus.me/feed/"
               "http://feeds.feedburner.com/ElixirLang"
               "http://www.ruby-lang.org/en/feeds/news.rss")
  ;;=> 11
  )

以上是关于markdown rss中的关键词统计来自clojure的快乐的主要内容,如果未能解决你的问题,请参考以下文章

markdown 如何在Ubuntu上安装Tiny Tiny RSS

新闻应用程序使用多个RSS提要

RSS统计/流量指标

如何利用 notedown 完成 ipynb与markdown之间的格式转换?

统计所有进程使用的RSS常驻内存内存和大小

Linux脚本练习之script091-统计VSZ,RSS各自总和