mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-13 12:33:14 +02:00
8 lines
198 B
Python
8 lines
198 B
Python
#!/usr/bin/env python3
|
|
|
|
from stem import Signal
|
|
from stem.control import Controller
|
|
|
|
with Controller.from_port(port=9051) as controller:
|
|
controller.authenticate()
|
|
controller.signal(Signal.NEWNYM)
|