easy_rss

Use Rust to Serialize the Rss structure.

Usage

toml easy_rss = "*"

Examples

Parse Xml

```rust use easy_rss::*;

fn main()->Result<(),Box> { let address = "https://www.zhihu.com/rss"; let mut parser = RssParser::fromurl(address,"utf8")?; parser.authortag = String::from("dc:creator");

let rss = parser.parse_vec()?;
println!("{:?}",rss);    
Ok(())

} ```

Parse Web XMl

```rust use easy_rss::RssParser;

fn main()->Result<(),Box> { let address = "https://www.zhihu.com/rss"; let mut parser = RssParser::fromurl(address,"utf8")?; parser.authortag = String::from("dc:creator"); assert!(parser.parsejson().isok()); Ok(()) } ```

RSS To Json

```rust use easy_rss::RssParser;

fn main()->Result<(),Box> { let address = "https://www.zhihu.com/rss"; let mut parser = RssParser::fromurl(address,"utf8")?; parser.authortag = String::from("dc:creator"); assert!(parser.parsejson().isok()); Ok(()) } ```

Rss Request Builder

```rust use easy_rss::RssParser;

fn main()->Result<(),Box> { let address = "https://www.zhihu.com/rss"; let mut parser = RssParser::new(); parser.authortag = "dc:creator".into(); parser.publishtag = "pubDate".into(); let xml = parser.requestxml(address.asstr(),charset.asstr())?; parser.setxml(xml); assert!(parser.parsevec().isok()); Ok(()) } ```

Advanced

Examples