Skip to content

gaetronik/accuweather

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 api_key = "abcdefg".to_string();
let client = accuweather::Accuweather::new(api_key, Some(12345), None);
// get next 12 hours of hourly forecasts
let hourly_forecasts = client.get_hourly_forecasts(12);

let daily_forecasts = client.get_daily_forecasts(5);
let conditions = client.get_current_conditions();

About

Rust library to interact with accuweather api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages