Accuweather crate

Build Status Crates.io

This crate provides a client to accuweather forecast and current condition api. At the moment there is only three functions to interact with the api.

Example

``` extern crate accuweather;

let apikey = "abcdefg".tostring(); let client = accuweather::Accuweather::new(apikey, Some(12345), None); // get next 12 hours of hourly forecasts let hourlyforecasts = client.gethourlyforecasts(12);

let dailyforecasts = client.getdailyforecasts(5); let conditions = client.getcurrent_conditions(); ```