How to achieve an IP change in 3 sec with Python? Any working methods? or Is it possible to do an IP

18 Replies, 1237 Views

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.

Messages In This Thread



Users browsing this thread: 1 Guest(s)