Rust library to fetch YouTube content metadata. An attempt to mimic pafy but in Rust.
Put the below under [dependencies]
section in your Cargo.toml
:
rafy = "*"
``` extern crate rafy;
use rafy::Rafy;
fn main() {
let content = Rafy::new("https://www.youtube.com/watch?v=DjMkfARvGE8");
println!("{}", content.videoid);
println!("{}", content.title);
println!("{}", content.rating);
println!("{}", content.viewcount);
```
For more examples check out the Documentation.
The base code was adapted from rust-youtube-downloader by smoqadam, modified and further extended to suit the library accordingly.
The MIT License