Skip to content

Instantly share code, notes, and snippets.

from stem.control import Controller
from time import sleep
with Controller.from_port(port = 9052) as controller:
for i in range(0, 120):
try:
controller.authenticate()
break
except stem.SocketError:
sleep(1)