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
7
/// Join multiple url params together into a single string
pub fn url_params(params: Option<&str>) -> String {
    match params {
        Some(params) => format!("?{}", params),
        None => "".to_string(),
    }
}