2 个版本

0.1.1 2021 年 11 月 4 日
0.1.0 2021 年 11 月 4 日

#6#poe

MIT 许可证

20KB
469 代码行

围绕 https://poe.ninja/ 的有偏见的 API 包装器,特别关注经济数据集。

示例

use poe_ninja::*;

#[tokio::main]
async fn main() {
   	let client = Client::new("Scourge").unwrap();
   	let currencies = client.get_currencies().await.unwrap();
    let mirror_shard = currencies.into_iter().find(|c| c.name == "Mirror Shard").unwrap();
    println!("Mirror Shard value is {} chaos", mirror_shard.chaos_equivalent);
}

依赖项

~4–20MB
~267K SLoC