easy_rss

Crates.ioeasy_rss
lib.rseasy_rss
version1.0.1
sourcesrc
created_at2020-06-17 00:00:41.795198
updated_at2020-06-17 00:00:41.795198
descriptionRSS Parser
homepage
repositoryhttps://github.com/MeteorGX/easy_rss
max_upload_size
id254735
size19,795
MeteorCat (MeteorGX)

documentation

https://docs.rs/easy_rss

README

easy_rss

Use Rust to Serialize the Rss structure.

Usage

easy_rss = "*"

Examples

Parse Xml
use easy_rss::*;

fn main()->Result<(),Box<dyn std::error::Error>> {
    let address = "https://www.zhihu.com/rss";
    let mut parser = RssParser::from_url(address,"utf8")?;
    parser.author_tag = String::from("dc:creator");
    
    let rss = parser.parse_vec()?;
    println!("{:?}",rss);    
    Ok(())
}

Parse Web XMl

use easy_rss::RssParser;

fn main()->Result<(),Box<dyn std::error::Error>> {
    let address = "https://www.zhihu.com/rss";
    let mut parser = RssParser::from_url(address,"utf8")?;
    parser.author_tag = String::from("dc:creator");
    assert!(parser.parse_json().is_ok());
    Ok(())
}

RSS To Json

use easy_rss::RssParser;

fn main()->Result<(),Box<dyn std::error::Error>> {
    let address = "https://www.zhihu.com/rss";
    let mut parser = RssParser::from_url(address,"utf8")?;
    parser.author_tag = String::from("dc:creator");
    assert!(parser.parse_json().is_ok());
    Ok(())
}

Rss Request Builder

use easy_rss::RssParser;

fn main()->Result<(),Box<dyn std::error::Error>> {
    let address = "https://www.zhihu.com/rss";
    let mut parser = RssParser::new();
    parser.author_tag = "dc:creator".into();
    parser.publish_tag = "pubDate".into();
    let xml = parser.request_xml(address.as_str(),charset.as_str())?;
    parser.set_xml(xml);
    assert!(parser.parse_vec().is_ok());
    Ok(())
}

Advanced

Examples

Commit count: 0

cargo fmt