#demo #tf2 #api-bindings

demostf-client

针对 demos.tf 的 API 客户端

15 个不稳定版本 (3 个破坏性更新)

0.4.3 2022 年 8 月 21 日
0.4.2 2022 年 6 月 28 日
0.4.1 2022 年 5 月 15 日
0.3.0 2022 年 1 月 23 日
0.1.1 2020 年 7 月 25 日

#1045 in 网页编程

Download history 7/week @ 2024-04-20 5/week @ 2024-04-27 3/week @ 2024-05-11 3/week @ 2024-05-18 2/week @ 2024-05-25 5/week @ 2024-06-01 8/week @ 2024-06-08 5/week @ 2024-06-15 3/week @ 2024-06-22 3/week @ 2024-06-29 134/week @ 2024-07-27

每月 136 次下载

MIT/Apache

29KB
658

api-client

Build Status

Rust 的 demos.tf API 客户端

示例

use demostf_client::{ListOrder, ListParams, ApiClient};

#[tokio::main]
async fn main() -> Result<(), demostf_client::Error> {
    let client = ApiClient::new();
    
    let demos = client.list(ListParams::default().with_order(ListOrder::Ascending), 1).await?;
    
    for demo in demos {
        println!("{}: {}", demo.id, demo.name);
    }
    Ok(())
}

依赖项

~7–25MB
~363K SLoC