5 个不稳定版本
0.3.1 | 2023年6月20日 |
---|---|
0.3.0 | 2023年6月20日 |
0.2.0 | 2023年6月18日 |
0.1.1 | 2022年10月28日 |
0.1.0 | 2022年10月28日 |
1205 在 网页编程
每月 45 次下载
16KB
158 行
Rust 的 Ambient Weather API
ambient_weather_api
是一个用于从 Ambient Weather API 下载当前和历史的函数集合。它内置了选择您想要拉取数据的设备的功能,并内置了一些安全措施来避免超过 Ambient Weather 的速率限制。
要了解更多关于 Ambient Weather API 的信息,以及获取使用此库所需的 API 和应用密钥,请查看 Ambient Weather API 文档。
为了使用此 API,您需要查看 Ambient Weather 提供的 设备参数列表。并非所有设备参数都可以使用,请确保您调用的是与您的设备关联的参数。
目前,此 Rust crate 只能利用 Ambient Weather REST API。对他们的 Realtime Socket.IO API 的支持将在以后提供。
要了解更多关于此 crate 和访问官方文档,请访问 crates.io 页面。
入门
要从您的 Ambient Weather 设备获取最新的天气数据,请按照以下示例操作
use ambient_weather_api::*;
fn main() {
let api_credentials = AmbientWeatherAPICredentials {
api_key: String::from("Your API Key"),
app_key: String::from("Your Application Key"),
device_id: 0,
use_new_api_endpoint: false,
};
// Get the current temperature
let latest_data = get_latest_device_data(&api_credentials);
println!("The current temp is: {}F", latest_data.tempf.unwrap());
// Get the historic temperatures and loop through them going back in time
let historic_data = get_historic_device_data(&api_credentials);
for i in 0..historic_data.len() {
println!("The historic temp was: {}F", historic_data[i].tempf.unwrap());
}
}
依赖项
~6–19MB
~287K SLoC