https://github.com/bes-dev/free_proxy_list_client
Simple python client for https://free-proxy-list.net/
https://github.com/bes-dev/free_proxy_list_client
Last synced: over 1 year ago
JSON representation
Simple python client for https://free-proxy-list.net/
- Host: GitHub
- URL: https://github.com/bes-dev/free_proxy_list_client
- Owner: bes-dev
- License: apache-2.0
- Created: 2024-05-19T12:01:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-19T12:20:20.000Z (about 2 years ago)
- Last Synced: 2025-03-12T06:35:45.688Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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_client
```
## 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_client 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)
```