Metadata-Version: 2.1
Name: free-proxy-list-client
Version: 2024.5.19.0
Summary: Simple python client to https://free-proxy-list.net/
Home-page: UNKNOWN
Author: Sergei Belousov aka BeS
Author-email: sergei.o.belousov@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4
Requires-Dist: requests

# free-proxy-list client

Simple python client to https://free-proxy-list.net/


## Requirements

* Linux, Windows, MacOS
* Python 3.8.+

## Install package

```bash
pip install free_proxy_list
```

## Install the latest version

```bash
git clone https://github.com/bes-dev/free-proxy-list.python
cd free-proxy-list.python
pip install .
```

## Example

```python
from free_proxy_list import FreeProxyListClient

client = FreeProxyListClient()
search_results = client.search(get_random_proxy=True)[0]
print(search_results)
search_results = client.search(https='yes', get_random_proxy=True)[0]
print(search_results)
search_results = client.search(https='yes', get_random_proxy=True, update_proxies=True)[0]
print(search_results)
```


