[b]"How to achieve an IP change in 3 sec with Python? Any working methods?"[/b] or [b]"Is there a reliable way to

14 Replies, 1312 Views

Bro, just use Tor with Stem.

It’s free and you can force a new circuit (aka new IP) in like 2-3 sec.

```python
from stem import Signal
from stem.control import Controller

with Controller.from_port(port=9051) as c:
c.authenticate()
c.signal(Signal.NEWNYM)
```

Not perfect for everything, but works for quick ip change in 3 sec python.

Messages In This Thread



Users browsing this thread: 1 Guest(s)