| Crates.io | yandex-music |
| lib.rs | yandex-music |
| version | 0.4.8 |
| created_at | 2024-06-16 15:23:56.931963+00 |
| updated_at | 2026-01-16 03:13:15.818461+00 |
| description | Rust wrapper for the Yandex Music API |
| homepage | |
| repository | https://github.com/vyfor/yandex-music-rs |
| max_upload_size | |
| id | 1273595 |
| size | 269,716 |
A wrapper around the Yandex Music API in Rust. Made exclusively for educational purposes only. Not affiliated with Yandex in any way.
cargo add yandex-music
use yandex_music::YandexMusicClient;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Replace "TOKEN" with your Yandex Music access token
let client = YandexMusicClient::builder("TOKEN").build()?;
// Example usage
let status = client.get_account_status().await?;
println!("Account status: {status:?}");
Ok(())
}
[!NOTE] You may also want to take a look at yamusic.