Skip to content

mikhailbot/fast_syndication

Repository files navigation

FastSyndication

Minimal wrapper around Rust NIFs for fast RSS and Atom feed parsing

  • rss for parsing RSS feeds
  • atom for parsing Atom feeds

Heavily based on the existing FastRSS wrapper.

Usage

iex(1)>  {:ok, map_of_atom} = FastRSS.parse_atom("...atom_feed_string...")
iex(2)>  {:ok, map_of_rss} = FastRSS.parse_rss("...rss_feed_string...")