A go library to use luminati.io proxy service. Personal project just to do something meaningful while trying to learn a little bit of golang
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Just import like any other go library
import "github.com/elph/luminati"
c := luminati.NewClient("luminati-user", "luminati-pwd", "luminati-host", 989898)
request, _ := http.NewRequest("GET", "http://www.google.com", nil)
resp, err := c.Do(request)
go test
This project is licensed under the MIT License - see the LICENSE file for details