#客户端 #模式 #id #open-api #名称 #注册表 #生成

benchling

Benchling 客户端,由 OpenAPI 规范生成

5 个版本 (主要突破)

5.0.0 2022年11月8日
4.0.0 2022年10月30日
3.0.0 2022年10月27日
2.0.0 2022年10月21日
1.0.0 2022年10月13日

#2395 in 数据库接口

MIT 许可证

1MB
26K SLoC

GitHub Contributors Stars Build Status Downloads Crates.io

Benchling 客户端,由 OpenAPI 规范生成。

用法

use benchling::BenchlingClient;
use benchling::model::*;
#[tokio::main]
async fn main() {
    let client = BenchlingClient::from_env();
    let response = client
        .list_aa_sequences()
        .page_size(1)
        .next_token("your next token")
        .sort("your sort")
        .modified_at("your modified at")
        .name("your name")
        .name_includes("your name includes")
        .amino_acids("your amino acids")
        .folder_id("your folder id")
        .mentioned_in("your mentioned in")
        .project_id("your project id")
        .registry_id("your registry id")
        .schema_id("your schema id")
        .schema_fields(SchemaFieldsQueryParam {})
        .archive_reason("your archive reason")
        .mentions("your mentions")
        .ids("your ids")
        .entity_registry_ids_any_of("your entity registry ids.any of")
        .names_any_of("your names.any of")
        .names_any_of_case_sensitive("your names.any of.case sensitive")
        .creator_ids("your creator ids")
        .author_ids_any_of("your author ids.any of")
        .send()
        .await
        .unwrap();
    println!("{:#?}", response);
}

此示例从环境变量中加载配置,具体为

  • BENCHLING_BASIC_API_KEY_AUTH

安装

将其添加到您的 Cargo.toml 中

[dependencies]
benchling = "0.1.0"

文档

您可以在 examples/ 目录中查看每个 API 调用的有效示例。

贡献

欢迎贡献!

使用 Libninja 创建的库。

依赖关系

~15–27MB
~548K SLoC