Retrieve lists of free HTTP proxies from online sites.
Project description
Package Description
GetProx is a library for retrieving lists of free HTTP proxies from various online sites.
Installation
The package may be installed as follows:
pip install getprox
Usage Examples
To retrieve proxies from all available sources, invoke the package as follows:
import getprox proxy_uri_list = getprox.proxy_get()
Proxies are returned in http://host:port format. By default, the proxies will be tested using a simple timeout test to determine whether they are alive. A list of supported proxy sources can be obtained via
proxy_src_list = getprox.sources()
Proxies may also be obtained from a specific source or sources. For example:
proxy_uri_list = getprox.proxy_get('letushide')
Internally, proxy retrieval and testing is performed asynchronously; one can also access the asynchronous mechanism as follows:
p = getprox.ProxyGet() # .. wait for a while .. proxy_src_list = p.get()
Instantiation of the ProxyGet class will launch threads that perform retrieval and testing. If the threads finish running, the get() method will return the retrieved proxy URIs; if not, the method will return an empty list.
Development
The latest release of the package may be obtained from GitHub.
To Do
Add support for more proxy sources.
Expose proxy selection options for specific sources.
Provide more robust proxy checking algorithm.
License
This software is licensed under the BSD License.
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
File details
Details for the file getprox-0.1.1.tar.gz
.
File metadata
- Download URL: getprox-0.1.1.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1dd2b490741f8ae97e14439ee117efe20bc745f2d35c90e1aec3d8fa7b33a15 |
|
MD5 | 9c40bdb9a82f8c1f21f785b62de14a42 |
|
BLAKE2b-256 | f58a91dcb7ce65957a032deef5afabc3aaa9c633bf49b3de635ef508e148957e |