A futures-based RSS-reading library for rust.
To fetch a feed
```rust extern crate hermod;
use hermod::models::Feed; use hermod::futures::fetch_feed;
fn getafeed(url: &str) { fetchfeed(url) .andthen(|feed| { let channel = feed.channel; let title = channel.title; }); } ```
To start a loop that will fetch several feeds, and run a custom func for each feed with the resulting Feed
```rust extern crate hermod;
use std::sync::{Arc, Mutex};
use hermod::models::Feed; use hermod::futures::startfetchloop;
fn automaticallyfetchfeeds() { let interval = 300; // seconds let feeds = vec![ "https://lorem-rss.herokuapp.com/feed".toowned(), "https://feeds.feedburner.com/cyclingtipsblog/TJog".toowned(), ]; let feed_state = Arc::new(Mutex::new(feeds)); // thread-safe Vec of strings
let func = |feed: Feed| println!("updated feed: {}", feed.channel.title); // func to run for each updated feed
let work = startfetchloop(feed_state, interval, func); tokio::run(work); } ```