If you’re okay with *public* proxies (risky!), check out `proxybroker`.
It finds free proxies and you can rotate them.
```python
from proxybroker import Broker
async def show(proxies):
async for proxy in proxies:
print(proxy)
proxies = Broker()
proxies.find(types=['HTTP', 'HTTPS'], limit=10)
```
But yeah, free proxies = slow/unstable. Not ideal for ip change in 3 sec python.
It finds free proxies and you can rotate them.
```python
from proxybroker import Broker
async def show(proxies):
async for proxy in proxies:
print(proxy)
proxies = Broker()
proxies.find(types=['HTTP', 'HTTPS'], limit=10)
```
But yeah, free proxies = slow/unstable. Not ideal for ip change in 3 sec python.
