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

#136 in Audio

32 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–19MB
~269K SLoC