#music #api-bindings #odesli

odesli-rs

非官方库,用于以异步方式与 Odesli API 通信

7 个版本 (4 个主要版本)

5.0.0 2023年11月2日
4.1.0 2023年10月26日
3.0.0 2023年10月23日
2.0.0 2023年10月23日
1.0.0 2023年10月23日

180#music

Download history

每月下载量 53

MIT 许可证

20KB
393 代码行

odesli-rs

[非官方] 异步 Rust 库,用于与 Odesli API 通信

  • 支持通过 URL 和 ID 获取

示例

  • Cargo.toml
[package]
name = "odesli-test"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.net.cn/cargo/reference/manifest.html

[dependencies]
odesli-rs = "5.0.0"
strum = "0.25.0"
tokio = { version = "1.33.0", features = ["full"] }
  • src/main.rs
use odesli_rs::{APIProvider, ClientBuilder, EntityType, Platform};
use strum::IntoEnumIterator;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("Supported Platforms:");
    for platform in Platform::iter() {
        println!(" - {:?}", platform)
    }
    println!("");

    println!("Supported API Providers:");
    for provider in APIProvider::iter() {
        println!(" - {:?}", provider)
    }
    println!("");

    let client = ClientBuilder::default()
        // .with_api_key(String::from("<INSERT_YOUR_API_KEY_HERE>")) // OPTIONAL
        // .with_api_version(String::from(odesli_rs::API_VERSION)) // Will be useful if any new API versions are released
        // .with_http_client(reqwest::Client::default()) // If you want to change your `reqwest::Client`'s settings
        .build();

    dbg!(
        client
            .get_by_url("https://music.youtube.com/watch?v=cnnOwLfAxn0&si=3MtMRBN3Zy4FFNxU")
            .await
    );

    let result = client
        .get_by_id(
            "7CNUefGBVLn4cLoYv3ej8x",
            &Platform::Spotify,
            &EntityType::Song,
        )
        .await?;

    dbg!(&result);
    dbg!(result.get_platform_url(&Platform::YouTube));
    dbg!(result.get_platform_entity(&Platform::YouTube));

    Ok(())
}

依赖项

~4–18MB
~235K SLoC