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.
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.
