13 个不稳定版本 (3 个有破坏性的更新)

0.4.1 2024年2月25日
0.4.0 2024年2月23日
0.3.3 2024年2月23日
0.2.4 2023年11月30日
0.1.1 2023年11月18日

#13 in #home

Download history 50/week @ 2024-04-01 222/week @ 2024-04-15 58/week @ 2024-07-01

每月 58 次下载

MIT/Apache

1MB
2K SLoC

ugc-scraper

我们家中有一个ugc api

使用方法

use ugc_scraper::{Result, SteamID, UgcClient};

#[tokio::main]
async fn main() -> Result<()> {
    let client = UgcClient::new();
    let id = SteamID::from(76561198024494988);
    let player = client.player(id).await?;
    println!("{}", player.name);
    for team in player.teams {
        println!(
            "  {} playing {} since {}",
            team.team.name, team.league, team.since
        )
    }

    Ok(())
}

依赖项

~12–25MB
~394K SLoC