Skip to content

cwleonard/wundergroundapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wundergroundapi

A Java client library for accessing the Weather Underground REST API.

See http://www.wunderground.com/weather/api/ for more information and to register for your own API key.

Example Usage

WeatherRequest req = new WeatherRequest();
req.setApiKey("your_api_key");
req.addFeature(Feature.CONDITIONS);

WeatherResponse resp = req.query("17084");
System.out.println("Current weather: " + resp.getConditions().getWeather());

Author

Casey Leonard (@THECaseyLeonard, http://www.caseyleonard.com)

About

Java client to access the Weather Underground REST API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages