Library to get a RSS feed, even if the target website does not offer one. If there is a proper RSS feed it will use the excellent remus, otherwise it will try to create a feed using other HTTP resource.
Websites don't necessarily offer a RSS feed but most off them offer a sitemap to improve their SEO ranking. This library attempt to create a feed using alternative methods such as using a sitemap or parse a web page to extract the link.
Try multiple method to create a RSS feed, from the more natural to the most "hacky"
(require '[super-rss :as sr]])
(sr/get-feed "http://website.com/" {} {})
; Return
{:method [:find-rss-url "http://website.com/posts.atom"],
:result [{:description "",
:updated-date #inst "2020-10-14T23:58:08.000-00:00",
:published-date #inst "2020-10-14T21:43:45.000-00:00",
:title "Bla bla",
:link "http://website.com/posts/blabla"}]}
Try to create a feed from the sitemap
(sr/get-feed "http://website.com/" {:method :sitemap} {})
Try to create a feed from the links on "http://website.com/posts"
(sr/get-feed "http://website.com/posts" {:method :page-links} {})
Avoid crawling a page already ingest by passing a extra function. Useful to not crawl over and over the same page for big sitemap.
(defn already-ingest? [url]
; your db call to check if the URL need to be crawl or if you already have the result in database
...
)
(sr/get-feed "http://website.com/" {:method :sitemap} {:already-ingest? already-ingest?})
Copyright © 2021 Julien Bille
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version, with the GNU Classpath Exception which is available at https://www.gnu.org/software/classpath/license.html.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close