My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Links

Java client library for Yahoo's Upcoming REST API

Example:

   import upcoming.client.*;

   Client c = new Client(upcomingApiKey);
		
		
   List<Event> events = c.findEventsNear(45.521694, -122.691806, 
                                         5 /* radius in miles */);


   List<Venue> venues = c.findVenuesNear(45.521694, -122.691806, 
                                         5 /* radius in miles */);


   List<Category> categories = c.getCategories();
Powered by Google Project Hosting