openSUSE:12.3 The next openSUSE distribution Our bleeding edge distribution. This will become the next official openSUSE distribution, Alpha and Beta versions are mastered from this distribution. Have a look at http://en.opensuse.org/Portal:Factory for more details. https://download.opensuse.org/distribution/12.3/repo/oss/ go-httplib.go A simple, low-level http library for Go httplib.go is a simple extension of Go's http client that provides keep-alive connections and generic requests. This is a small usage example: //get the google home page c := new(httplib.Client) resp, err := c.Request ("http://google.com", "GET", nil, "") data := ioutil.ReadAll( resp.Body ) println(string(data))