/ballyregan

Find fetch & validate free proxies fast.

Primary LanguagePythonApache License 2.0Apache-2.0

Ballyregan 🔷

Find fetch & validate free proxies fast.

Package version Supported Python versions License: Apache 2.0



Ballyregan is a package & CLI that allows you to fetch free tested proxies really fast!

Key features:



How does it work?

When you use the ProxyFetcher to fetch a proxy, it performs several steps:

  1. Gather all the available proxies from a list of built in providers (each provider gathers it's own and returns it to the fetcher).
  1. Filter all the gathered proxies by the given protocols and anonymities (if exist).
  2. Validate the filtered proxies and return them.

Note
You can write and append your own custom providers and pass it to the ProxyFetcher class as attribute.
Every custom proxy provider must implement the IProxyProvider base interface.


Behind the scenes

Fetching a proxy is an IO bound operation which depends on network. A common approach for this problem is performing your network requests async.
After digging a bit, testing Threads, Greenlets and async operations, we decided to go the async way.
To perform async http requests, ballyregan uses aiohttp and asyncio, as "asyncio is often a perfect fit for IO-bound and high-level structured network code." (from asyncio docs).
By using the power of async http requests, ballyregan is able to validate thousands of proxies really fast.


Install

pip install ballyregan

Usage

Package 📦

Create a fetcher instance

from ballyregan import ProxyFetcher

# Setting the debug mode to True, defaults to False
fetcher = ProxyFetcher(debug=True)

Get one proxy

proxy = fetcher.get_one()
print(proxy)

Get multiple proxies

proxies = fetcher.get(limit=4)
print(proxies)

Get proxies by filters

from ballyregan.models import Protocols, Anonymities

proxies = fetcher.get(
  limit=4,
  protocols=[Protocols.HTTPS, Protocols.SOCKS5],
  anonymities=[Anonymities.ELITE]
)
print(proxies)

CLI 💻

Get all proxies

ballyregan get --all

Get one proxy

ballyregan get

Use debug mode

ballyregan --debug get [OPTIONS]

Format output to json

ballyregan get -o json

Get proxies by limit

bellyregan get -l 4

Get proxies by filters

bellyregan get -l 4 -p https -p socks5 -a elite

Author

👤 Idan Daniel

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 Idan Daniel.
This project is Apache License Version 2.0 licensed.