Library that finds public proxies
Project description
Open source library that finds public proxies from several sources.
Usage
The package must be imported and used through it’s API.
get(amount, proxy_type)
The main function is get, which receives 2 parameters: - amount which specifies the amount of proxies required - proxy_type which specifies the type of proxy (https, http, socks4)
>>> import fake_proxy
>>> fake_proxy.get()
[{'ip': '188.166.83.20', 'port': '3128', 'country_code': 'NL', 'country': 'Netherlands', 'type': 'http'}]
>>> fake_proxy.get(amount=3)
[{'ip': '89.20.135.204', 'port': '10000', 'country_code': 'RU', 'country': 'Russian Federation', 'type': 'http'},
{'ip': '165.22.154.157', 'port': '3128', 'country_code': 'US', 'country': 'United States', 'type': 'http'},
{'ip': '62.182.206.19', 'port': '37715', 'country_code': 'RU', 'country': 'Russian Federation', 'type': 'http'}]
>>> fake_proxy.get(proxy_type='https')
[{'ip': '36.92.108.150', 'port': '3128', 'country_code': 'ID', 'country': 'Indonesia', 'type': 'https'}]
get_by_source(source_name, amount, proxy_type)
Similar to get(), but lets you specify a particular source from which to obtain a proxy. - source_name: name of the source from which to get a proxy - amount: specifies the amount of proxies required - proxy_type: specifies the type of proxy (https, http, socks4)
>>> import fake_proxy
>>> fake_proxy.get_from_source(source_name='free-proxy-list.net', amount=2, proxy_type='http')
[{'ip': '76.87.101.188', 'port': '38875', 'country_code': 'US', 'country': 'United States', 'type': 'http'},
{'ip': '62.182.206.19', 'port': '37715', 'country_code': 'RU', 'country': 'Russian Federation', 'type': 'http'}]
proxy_sources()
Returns a list with the names of all the sources from which the library fetches proxies.
>>> import fake_proxy
>>> fake_proxy.proxy_sources()
{'https': ['free-proxy-list.net'],
'socks4': ['socks-proxy.net'],
'http': ['free-proxy-list.net']}
reload()
Fetches new proxies from the proxy sources.
Sources
For the moment, the library fetches the proxies from the following sources:
Source URL |
Proxy Types |
---|---|
HTTP, HTTPS |
|
HTTPS |
|
SOCKS4 |
Installation
Latest release through PyPI:
$ pip install fake-proxy
Development version:
$ git clone git@github.com:machinia/fake-proxy.git
$ cd fake-proxy
$ pip install -e .
Contribution
Contributions are welcome! Feel free to report bugs or open an issue if you feel a new feature is needed. Pull requests are welcome!
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
Built Distribution
File details
Details for the file fake-proxy-0.1.1.tar.gz
.
File metadata
- Download URL: fake-proxy-0.1.1.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9d0cd98447a4fcbf2f55bb6cfcc8b84911c1da201616ab70ac21d03613fc33f |
|
MD5 | db363befd59bf75bf2f855809e4bf1a7 |
|
BLAKE2b-256 | 83afe280bfddb0badd83c66a631aebf6d49afe643d8515cce847b987a3425db2 |
File details
Details for the file fake_proxy-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: fake_proxy-0.1.1-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b226533e3e218497849810e54f0ba62aae9c6767715e92aaed2d3e9651439a3 |
|
MD5 | dda86882db8eef61d80e36b4b3e8ad44 |
|
BLAKE2b-256 | 265287b1267174c95abf56b6cb0bb979db10af1d04071cebe789f182fad42866 |