#weather #api #api-key #locality #com

weather-union

为 https://www.weatherunion.com/ 提供的包

4 个版本

0.2.0 2024年5月23日
0.1.2 2024年5月22日
0.1.1 2024年5月22日
0.1.0 2024年5月21日

#4 in #locality

Download history • Rust 包仓库 316/week @ 2024-05-18 • Rust 包仓库 23/week @ 2024-05-25 • Rust 包仓库 8/week @ 2024-06-29 • Rust 包仓库 36/week @ 2024-07-06 • Rust 包仓库 57/week @ 2024-07-27 • Rust 包仓库

每月 94 次下载

MIT 许可证

61KB
815

weather-union rust 实现

weatherunion API 的 rust 实现库。

快速入门

let instance = WeatherUnion::from_key("api_key".to_string());
let weather_info = instance.locality(LocalityId::ZWL#).await.unwrap();
println!("Live temperature for {}", LocalityId::ZWL#.locality_name());
println!("{}", weather_info.temperature);

其中 "api_key" 是您的 WeatherUnion API 密钥,ZWL# 是来自 这里 的地区 ID

依赖项

~4–15MB
~208K SLoC