Skip to main content

proxy randomizer

Project description

proxy-randomizer

https://img.shields.io/pypi/v/proxy_randomizer.svg https://travis-ci.com/Esequiel378/proxy_randomizer.svg?branch=master Documentation Status

proxy randomizer

Installation

pip install proxy_randomizer

API

To use proxy_randomizer in your code, you just need to generate a RegisteredProviders instance and parse the providers.

from proxy_randomizer.providers import RegisteredProviders

rp = RegisteredProviders()
rp.parse_providers()

print(f"proxy: {rp.get_random_proxy()}")

You can iterate throughout all proxies as simple as this.

from proxy_randomizer.providers import RegisteredProviders
import requests

rp = RegisteredProviders()
rp.parse_providers()

for proxy in rp.proxies:

     proxies     = { "https": f"{proxy.ip_address}:{proxy.port}" }
     response    = requests.get("http://google.com", proxies=proxies)

If you need to hide your identity, you can filter the proxy list by its anonymity level.

from proxy_randomizer.providers import RegisteredProviders
from proxy_randomizer.utils import ANONYMOUS

rp = RegisteredProviders()
rp.parse_providers()

anonymous_proxies = list( filter(lambda proxy: proxy.anonymity == ANONYMOUS, rp.proxies) )

print(f"filtered proxies: {anonymous_proxies}")

There are four different anonymity levels, you can inspect them like this

from proxy_randomizer.utils import ANONYMITY_LEVELS

print(ANONYMITY_LEVELS)

Command-line interface

If you need some quick proxy, just type this in your terminal.

proxy_randomizer

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.0 (2020-08-02)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

proxy_randomizer-1.0.0.tar.gz (33.2 kB view hashes)

Uploaded Source

Built Distribution

proxy_randomizer-1.0.0-py2.py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page