A useful python package to obtain free proxies using several services.
Your Python package for retrieving internet proxy servers using free services.
- GimmeProxy.com Integration: Fetch proxies from GimmeProxy service.
- ProxyRotator.com Integration: Fetch proxies using the ProxyRotator API.
You can install the package using pip:
pip install proxygrabkit
from proxygrabkit import GimmeProxyClient
# Declare a object of type GimmeProxyClient
proxy_fetcher = GimmeProxyClient()
# Get a random proxy
proxy = proxy_fetcher.get_proxy()
print( proxy.proxy )
print( proxy.lastChecked )
from proxygrabkit import RotatingProxyClient
proxy_fetcher = RotatingProxyClient(api_key='xxxxxxxxxxxxxxxxxx')
proxy = proxy_fetcher.get_proxy()
print( proxy.proxy )
print( proxy.lastChecked )
See examples folder for more complex examples
- Support for <www.proxy-list.download>: Add functionality to retrieve proxies from this service.
- Support for https://www.sslproxies.org/: Incorporate support for SSL proxies from this source.
- Continuous Improvement and New Service Additions: Regularly update and add support for new proxy services.
If you encounter any issues or have enhancements to propose, feel free to open an issue or submit a pull request.
This package is licensed under the MIT License. See the LICENSE file for details.