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
Hashes for fake_proxy-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5efa9ae3d9ff514122e96390b8ca94e4d27f53c8b0acd72c92b1bc29475679da |
|
MD5 | f7024194301600b9b1328895d22c192c |
|
BLAKE2b-256 | 74c9b43530f6487ebd11af84f4f3060e66e05650d807b963bd1af33185df6129 |