项目作者: brunneis

项目描述 :
A dockerized load balancer that automatically distributes the traffic through a list of public proxies which is automatically renewed
高级语言: Python
项目地址: git://github.com/brunneis/anon-proxy-balancer.git
创建时间: 2019-03-10T10:23:07Z
项目社区:https://github.com/brunneis/anon-proxy-balancer

开源协议:GNU General Public License v3.0

下载


anon-proxy-balancer

A dockerized load balancer that automatically distributes the traffic through a list of public proxies which is automatically renewed.

Launch

  1. docker-compose up -d

Alternatively:

  1. docker run -p 9999:9999 -tid brunneis/anon-proxy-balancer

Connection from Python

  1. import requests
  2. response = requests.get('https://google.com/', proxies={'http': 'http://localhost:9999', 'https': 'http://localhost:9999'})