invidious 0.7.8

Get information about videos from YouTube with this simple Invidious API wrapper. Does not use the YouTube API (No tokens required)
Documentation
1
2
3
4
5
6
/// Perform a get request with `http_req` and returning a string response.
pub fn httpreq_get(url: &str) -> Result<Vec<u8>, http_req::error::Error> {
    let mut buffer = Vec::new();
    http_req::request::get(url, &mut buffer)?;
    Ok(buffer)
}