4 个版本

0.1.3 2024 年 3 月 21 日
0.1.2 2024 年 3 月 7 日
0.1.1 2024 年 2 月 28 日
0.1.0 2024 年 2 月 26 日

#1154 in 网页编程

每月 48 次下载

Apache-2.0

25KB
673

nyaa-si

Cargo Documentation

Rust 的异步 Nyaa 客户端。

用法

use nyaa_si::{Client, NyaaCategory, NyaaClient, QueryBuilder, Sort};

#[tokio::main]
async fn main() {
    let query = QueryBuilder::new()
        .search("tengoku")
        .sort(Sort::Downloads)
        .category(NyaaCategory::Anime)
        .build();

    let client = NyaaClient::new();
    let res = client.get(&query).await.unwrap();
    println!("{:#?}", res.get(0).unwrap());
}

依赖

~10–23MB
~370K SLoC