easyclient
An easy to use Golang wrapper for the net/http package to perform requests.
Features
- Auto body closing
- Auto body parsing
- Easily set and clear cookies for client
- Easily set cookies for a single request
- Ordered headers
- Easily set and clear headers for client
- Easily set headers for a single request
- Easily set and clear proxy for client
- Easily set proxy for a single request
Usage
Install:
go get github.com/etaaa/easyclient
Usage:
package main
import (
"log"
"github.com/etaaa/easyclient"
)
func main() {
// Create client.
client, _ := easyclient.NewClient(easyclient.ClientOptions{
Headers: map[string]string{
"api-key": "123",
},
})
// Create request.
res, body, _ := client.Do(easyclient.RequestOptions{
Cookies: map[string]string{
"foo": "bar",
},
Headers: map[string]string{
"user-agent": "easyclient",
},
Method: "GET",
ParseBody: true,
URL: "https://httpbin.org/headers",
})
fmt.Println(res.StatusCode, string(body))
}
Questions
For any questions feel free to add and DM me on Discord (eta#0001).
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.