1个不稳定版本
使用旧Rust 2015
0.2.0 | 2018年8月31日 |
---|
#11 在 #yahoo
8KB
130 行
yahoo-weather-rs
yahoo-weather-rs
库用于下载指定位置的实时天气数据,并将其转换为Rust数据结构。
用法
在 Cargo.toml
中将 yahoo-weather-rs
添加为依赖项
[dependencies]
yahoo-weather = "0.2"
使用 get_weather()
函数来获取天气数据。
extern crate yahoo_weather;
fn main() {
// Request the data
let weather = yahoo_weather("Berlin").unwrap();
// print it to the console
println!("Weather: {:?}", weather);
}
许可证
版权 © 2016 Robert Schütte
根据 MIT 许可证 分发。
依赖项
~7MB
~158K SLoC