Proxy scraper for further use
Project description
Free-proxy
Get free working proxy from https://www.sslproxies.org/ and use it in your script
FreeProxy class scrapes proxies from https://www.sslproxies.org/ and checkes if proxy is working. There is posibility to
filter proxies by country and acceptable timeout. You can also randomize list of proxies from where script would get
first working proxy.
You can use it in sending request through custom proxy, with selenium or wherever you want.
Returns proxy as string:
'http://113.160.218.14:8888'
Requirements
- Python3
- Request library
- Lxml library
Installation
pip install free-proxy
Usage with examples
First import Free Proxy that way:
from fp.fp import FreeProxy
Options
| Parameter | Type | Example | Default value |
|---|---|---|---|
| country_id | list | ['US', 'BR'] | None |
| timeout | float > 0 | 0.1 | 0.5 |
| rand | bool | True | False |
- No parameters
Get first working proxy from 100 proxies from https://www.sslproxies.org/
proxy = FreeProxy().get()
country_idparameter
Get first working proxy from specified list of countries. If there is no valid proxy from specified list check all countries
proxy = FreeProxy(country_id=['US', 'BR']).get()
timeoutparameter
Timeout is parameter for checking if proxy is valid. If test site doesn't respond in specified time
script marks this proxy as invalid. Defaulttimeout=0.5. You can change it by defining
specified timeout eg.timeout=1.
proxy = FreeProxy(timeout=1).get()
randparameter
Shuffles proxy list from https://www.sslproxies.org/. Defaultrand=Falseand searches for working proxy from newest to oldest (as they are listed in https://www.sslproxies.org/).
proxy = FreeProxy(rand=True).get()
anonymparameter
Return only those proxies that are marked as anonymous. Defaults toanonym=False
proxy = FreeProxy(anonym=True).get()
You can combine parameters:
proxy = FreeProxy(country_id=['US', 'BR'], timeout=0.3, rand=True).get()
If there is no working proxy script returns None
CHANGELOG
[1.0.3] - 2021-08-18
- Change XPatch due to SSL proxies page update
- Change lxml version
[1.0.2] - 2020-09-03
- Added
anonymparameter
[1.0.1] - 2020-03-19
- Fix typos in readme
- Fix urrlib3 exception
urllib3.exceptions.ProxySchemeUnknown: Not supported proxy scheme None, - Fix imports
[1.0.0] - 2019-02-04
- Initial release
License
MIT
Free Software!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
free_proxy-1.0.3.tar.gz
(4.0 kB
view details)
File details
Details for the file free_proxy-1.0.3.tar.gz.
File metadata
- Download URL: free_proxy-1.0.3.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.21.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96f855e96321aa5826cfe7ba3f8a183f09fc09737c7f138f25a3d05205db476f
|
|
| MD5 |
92abe4c298cc59dbb47ad4a9123700b3
|
|
| BLAKE2b-256 |
3d4858b8b98a7cedf803f3007ccdd327f6dd2a8050d75d249812f3e12dc7cfab
|