Coder Social home page Coder Social logo

machinia / fake-proxy Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 33 KB

Library that finds public proxies

License: MIT License

Python 100.00%
software-development systems proxy proxies proxy-list proxypool scraping scraping-websites scraping-python scrape proxies-scraper

fake-proxy's Introduction

fake-proxy

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
https://free-proxy-list.net/ HTTP, HTTPS
https://www.sslproxies.org/ HTTPS
https://www.socks-proxy.net/ SOCKS4

Installation

Latest release through PyPI:

$ pip install fake-proxy

Development version:

$ git clone [email protected]: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!

fake-proxy's People

Contributors

jcapona avatar

Stargazers

 avatar

Watchers

 avatar  avatar

fake-proxy's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.