2 releases

0.1.1 Aug 31, 2022
0.1.0 Aug 31, 2022

#7 in #forecast

Download history 837/week @ 2023-12-06 892/week @ 2023-12-13 550/week @ 2023-12-20 713/week @ 2023-12-27 752/week @ 2024-01-03 829/week @ 2024-01-10 1031/week @ 2024-01-17 1039/week @ 2024-01-24 1227/week @ 2024-01-31 1409/week @ 2024-02-07 934/week @ 2024-02-14 1402/week @ 2024-02-21 1604/week @ 2024-02-28 1552/week @ 2024-03-06 1674/week @ 2024-03-13 1351/week @ 2024-03-20

6,423 downloads per month

MIT license

37KB
987 lines

Weer api

A wrapper library for using Weather API

This is an unofficial library

Usage

Put this in your Cargo.toml:

[dependencies]
weer_api = "0.1.0"

Examples

Get forecast

use weer_api::{*, chrono::{Utc, TimeZone}};

let client = Client::new("api_key", true);
let result = client.forecast()
    .query(Query::City("London".to_string()))
    .dt(Utc.ymd(2022, 08, 21).and_hms(0, 0, 0))
    .lang(Language::Spanish)
    .call();

assert!(result.is_ok())

Get future

use weer_api::{*, chrono::{Utc, TimeZone}};

let client = Client::new("api_key", true);
let result = client.future()
    .query(Query::Coords(48.8567, 2.3508))
    .dt(Utc.ymd(2022, 09, 21).and_hms(0, 0, 0))
    .lang(Language::Spanish)
    .call();

assert!(result.is_ok())

Get history

use weer_api::{*, chrono::{Utc, TimeZone}};

let client = Client::new("api_key", true);
let result = client.history()
    .query(Query::Ip(None))
    .dt(Utc.ymd(2022, 07, 21).and_hms(0, 0, 0))
    .hour()
    .call();

assert!(result.is_ok())

License

Dependencies

~8.5MB
~243K SLoC