#weather #parse #parser

weather-underground

Weather Underground parser library

4 releases

0.1.3 Jun 16, 2022
0.1.2 Feb 27, 2022
0.1.1 Oct 8, 2020
0.1.0 Oct 7, 2020

#2031 in Web programming

34 downloads per month
Used in 3 crates (2 directly)

MIT license

31KB
197 lines

Weather underground library

A simple library to parse responses from weather underground api.

Installation

[dependencies]
weather-underground = "0.1"

Usage

use std::convert::TryFrom;
use std::time::Duration;
use weather_underground as wu;

async {
    let client = wu::create_client(Duration::from_secs(2)).unwrap();
    let api_key = wu::fetch_api_key(&client).await.unwrap();
    let unit = wu::Unit::Metric;
    let result = wu::fetch_observation(&client, api_key.as_str(), "IPARIS18204", &unit).await.unwrap();
    if let Some(response) = result {
        let response = wu::ObservationResponse::try_from(response).unwrap();
        println!("response: {:?}", response);
    } else {
        println!("no data from server");
    }
};

Dependencies

~11–27MB
~507K SLoC