/luminati

A go library to use luminati.io proxy service.

Primary LanguageGoMIT LicenseMIT

Updated

This project was updated with this pull request from SeqoeUI. I will monitor this for future pull requests if desired.

luminati

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

CircleCI master branch

CircleCI dev branch

Getting Started

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.

Prerequisities

Just import like any other go library

import "github.com/elph/luminati"

Using it

c := luminati.NewClient("luminati-user", "luminati-pwd", "luminati-host", 989898)
request, _ := http.NewRequest("GET", "http://www.google.com", nil)
resp, err := c.Do(request)

Running the tests

go test

License

This project is licensed under the MIT License - see the LICENSE file for details