Welcome to Resty

This is the main package for Resty, a simple HTTP/REST client. To get started, check out the Javadoc of the Resty class. Here is a typical usage pattern:
import static us.monoid.web.Resty.*;
import us.monoid.web.Resty;

...
Resty r = new Resty();
// r.authenticate(...,..,..);

// Look up postal code 66780 in Germany and extract the name of the place from the JSON.
String cityName = r.json("http://ws.geonames.org/postalCodeLookupJSON?postalcode=66780&country=DE").
	get("postalcodes[0].placeName").toString(); 
...