Library for serializing the RSS web content syndication format.
Reading from the following RSS versions is supported:
Writing support is limited to RSS 2.0.
Add the dependency to your Cargo.toml
.
toml
[dependencies]
rss = "0.6"
The package includes a single crate named rss
.
rust
extern crate rss;
BufRead
A channel can be read from any object that implements the BufRead
trait.
```rust use std::fs::File; use std::io::BufReader; use rss::Channel;
let file = File::open("tests/data/rss2sample.xml").unwrap(); let reader = BufReader::new(file); let channel = Channel::read_from(reader).unwrap(); ```
A channel can also be read from a URL.
To enable this functionality you must enable the from_url
feature in your Cargo.toml.
toml
[dependencies]
rss = { version = "*", features = ["from_url"] }
```rust use rss::Channel;
let channel = Channel::from_url("https://feedpress.me/usererror.xml").unwrap(); ```
A channel can be written to any object that implements the Write
trait or converted to an XML string using the ToString
trait.
Note: Writing a channel does not perform any escaping of XML entities.
```rust use std::fs::File; use std::io::{BufReader, sink}; use rss::Channel;
let file = File::open("tests/data/rss2sample.xml").unwrap(); let reader = BufReader::new(file); let channel = Channel::read_from(reader).unwrap();
// write to the channel to a writer channel.write_to(sink()).unwrap();
// convert the channel to a string let string = channel.to_string(); ```
A channel can be created using the Builder functions.
```rust use rss::{ChannelBuilder, ImageBuilder};
let image = ImageBuilder::default() .url("http://jupiterbroadcasting.com/images/LAS-300-Badge.jpg") .title("LAS 300 Logo") .link("http://www.jupiterbroadcasting.com") .finalize();
let channel = ChannelBuilder::default() .title("The Linux Action Show! OGG") .link("http://www.jupiterbroadcasting.com") .description("Ogg Vorbis audio versions of The Linux Action Show!") .image(image) .finalize(); ```
Validation can be performed using either a Channel
or a builder.
The the following checks are performed during validation:
```rust use rss::Channel;
let input = include_str!("tests/data/rss2sample.xml");
let channel = input.parse::
```rust use rss::ImageBuilder;
let builder = ImageBuilder::default() .url("http://jupiterbroadcasting.com/images/LAS-300-Badge.jpg") .title("LAS 300 Logo") .link("http://www.jupiterbroadcasting.com") .validate() .unwrap(); ```
Elements which have non-default namespaces will be considered extensions. Extensions are stored in Channel.extensions
and Item.extensions
.
For conveninence, Dublin Core and iTunes extensions are extracted to structs and stored in Channel.itunes_ext
, Channel.dublin_core_ext
, Item.itunes_ext
, and Item.dublin_core_ext
.
As a best effort to parse invalid feeds rss
will default elements declared as "required" by the RSS 2.0 specification to an empty string.
Licensed under either of
at your option.