Skip to content

hoisie/httplib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

httplib.go is a simple extension of Go's http client that provides a nice fluid interface for building HTTP requests

Installation

go get github.com/hoisie/httplib

Usage

This is a small usage example:

package main

import "github.com/hoisie/httplib"

//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))

About

A simple, low-level http library for Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages