13 stable releases

2.2.0 Feb 9, 2024
2.1.1 Jan 17, 2024
2.1.0 Dec 27, 2023
2.0.0 Apr 16, 2023
1.1.0 Oct 6, 2022

#127 in Audio

Download history 6/week @ 2024-01-11 1/week @ 2024-01-18 7/week @ 2024-02-08 8/week @ 2024-02-22 9/week @ 2024-02-29 4/week @ 2024-03-07 11/week @ 2024-03-14 34/week @ 2024-03-28 18/week @ 2024-04-04 225/week @ 2024-04-25

260 downloads per month

MIT/Apache

26KB
445 lines

A library for fetching Youtube Music metadata

currently, these features are included:

  • searching for an artist by name
  • getting an artist's singles and albums
  • listing tracks and their ids from an album

this library was inspired by youtube-music-api written in javascript

Code examples

    // Request configs from youtube music
    let client = Client::init().await.unwrap();
    
    // Get an album from the first artist in the search results
    let album = client.search_artists("Tři sestry").await.unwrap()
    [0].request(&client).await.unwrap()
    .albums[0].request(&client).await.unwrap();
    
    println!("first album: {:#?}", album);
    // Request configs from youtube music
    let client = Client::init().await.unwrap();
    
    // Get an album from the first artist in the search results

    // Search for an artist
    let search_results = client.search_artists(QUERY).await.unwrap();

    // Get the first result
    let artist = client.get_artist(&search_results[0].browse_id).await.unwrap();

    // Get it's first album
    let album = client.get_album(&artist.albums[0].browse_id).await.unwrap();
    
    println!("first album: {:#?}", album);

Dependencies

~6–21MB
~278K SLoC