package river
RSS2 and Atom feed aggregator for OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
river-0.3.tbz
sha256=f05073d1412f003b4266d0dcafa54f9740571e8016bd0850bdf7f1562fe11054
sha512=cf8b319bd5d3952abf205937883b71cfb27107bb550990bc3d9f12d80ed87f5b6e87f126caf711f24ff7c2de9f3c0a5d27661088f87cddbbce9b58a4b2394ace
doc/README.html
River
RSS2 and Atom feed aggregator for OCaml
Features
- Performs deduplication.
- Supports pagination and generating well-formed html prefix snippets.
- Support for generating aggregate feeds.
- Sorts the posts from most recent to oldest.
- Depends on ocamlnet for html parsing.
Installation
opam install river
Usage
Here's an example program that aggregates the feeds from different sources:
let sources =
River.
[
{ name = "KC Sivaramakrishnan"; url = "http://kcsrk.info/atom-ocaml.xml" };
{
name = "Amir Chaudhry";
url = "http://amirchaudhry.com/tags/ocamllabs-atom.xml";
};
]
let () =
let feeds = List.map River.fetch sources in
let posts = River.posts feeds in
let entries = River.create_atom_entries posts in
let feed =
let authors = [ Syndic.Atom.author "OCaml Blog" ] in
let id = Uri.of_string "https://ocaml.org/atom.xml" in
let links = [ Syndic.Atom.link ~rel:Self id ] in
let title : Syndic.Atom.text_construct =
Text "OCaml Blog: Read the latest OCaml news from the community."
in
let updated = Ptime.of_float_s (Unix.gettimeofday ()) |> Option.get in
Syndic.Atom.feed ~authors ~links ~id ~title ~updated entries
in
let out_channel = open_out "example/atom.xml" in
Syndic.Atom.output feed (`Channel out_channel);
close_out out_channel
Contributing
Take a look at our Contributing Guide.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page