A dockerized load balancer that automatically distributes the traffic through a list of public proxies which is automatically renewed
A dockerized load balancer that automatically distributes the traffic through a list of public proxies which is automatically renewed.
docker-compose up -d
Alternatively:
docker run -p 9999:9999 -tid brunneis/anon-proxy-balancer
import requests
response = requests.get('https://google.com/', proxies={'http': 'http://localhost:9999', 'https': 'http://localhost:9999'})