#steam #api #api-bindings

steam_store_api

Steam 商店 API 的安全 Rust 绑定

1 个不稳定版本

0.1.0 2024年1月4日

#60#steam

MIT 许可证

31KB
781

steam_store_api

Rust 中 Steam 商店 API 的包装器。

这是基于 非官方 Steam 商店 资源,该资源提供从平台检索产品信息的方法。

示例

#
use anyhow::Result;
use steam_store_api::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {
    let client = SteamBuilder::new()
        .with_country_code("US")
        .with_language(&Language::English)
        .build()?;
    let app = client.app(&219990_u64).await?;
    println!("{:#?} - {:#?}", &app.app_id, &app.name);
    anyhow::Ok(())
}

lib.rs:

Steam 商店

非官方 Steam 商店资源的 API 客户端,该资源提供从平台检索产品信息的方法。

示例


#
use anyhow::Result;
use steam_store_api::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {
    let client = SteamBuilder::new()
        .with_country_code("US")
        .with_language(&Language::English)
        .build()?;
    let app = client.app(&219990_u64).await?;
    println!("{:#?} - {:#?}", &app.app_id, &app.name);
    anyhow::Ok(())
}

依赖项

~6–22MB
~333K SLoC