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
use crate::ClientAsyncTrait;

#[tokio::test]
async fn channel() {
    crate::ClientAsync::default()
        .method(crate::MethodAsync::Reqwest)
        .channel("UC7YOGHUfC1Tb6E4pudI9STA", None)
        .await
        .unwrap();
}

#[tokio::test]
async fn videos() {
    crate::ClientAsync::default()
        .method(crate::MethodAsync::Reqwest)
        .channel_videos("UC7YOGHUfC1Tb6E4pudI9STA", None)
        .await
        .unwrap();
}

#[tokio::test]
async fn playlists() {
    crate::ClientAsync::default()
        .method(crate::MethodAsync::Reqwest)
        .channel_playlists("UC7YOGHUfC1Tb6E4pudI9STA", None)
        .await
        .unwrap();
}

#[tokio::test]
async fn search() {
    crate::ClientAsync::default()
        .method(crate::MethodAsync::Reqwest)
        .channel_search("UC7YOGHUfC1Tb6E4pudI9STA", Some("q=testing"))
        .await
        .unwrap();
}