Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phenobarbital/proxylists
Get a list of free proxy servers from different providers
https://github.com/phenobarbital/proxylists
free proxy proxy-extractor proxy-extractor-online proxy-lists
Last synced: 3 months ago
JSON representation
Get a list of free proxy servers from different providers
- Host: GitHub
- URL: https://github.com/phenobarbital/proxylists
- Owner: phenobarbital
- License: apache-2.0
- Created: 2021-05-17T15:25:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-11T15:15:27.000Z (4 months ago)
- Last Synced: 2024-10-26T03:07:49.255Z (3 months ago)
- Topics: free, proxy, proxy-extractor, proxy-extractor-online, proxy-lists
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# proxylists
Proxylists is a simple tool for getting a list of proxy IPs from
free proxy servers using several providers.## Supported Providers:
* free-proxy-list.net
* hidemy.name
* proxydb.netcan retrieve a list of IPs by provider or from all of them
using the "get_proxies()" method.### Download
The list can be tabulated (one proxy by line, to save on .txt, csv, etc)
or a python dictionary.## Usage
```python
from proxylist import get_proxies
proxies = get_proxies()
```
Or get the list from a single provider:
```python
from proxylist.proxies import ProxyDB # getting from proxydb.net
import asyncioasync def get_proxies():
return await ProxyDB().get_list()loop = asyncio.get_event_loop()
proxies = loop.run_until_complete(get_proxies())
print(proxies)
```
### License ###Proxylists is licensed under BSD license.