#weather #api-access #yahoo #data #request

yahoo-weather

为Rust提供便捷的yahoo天气API访问

1个不稳定版本

使用旧Rust 2015

0.2.0 2018年8月31日

#11#yahoo

MIT 许可证

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