Tor with Python: Actively Refusing Connection -
Tor with Python: Actively Refusing Connection -
i'm trying interface tor using python, keeps refusing connection. here code:
from torctl import torctl conn = torctl.connect(controladdr="127.0.0.1", controlport=9051, passphrase="123")
i've tried:
from torctl import torctl conn = torctl.connect()
both yield next error:
failed found socket: [errno 10061] no connection made because target machine actively refused it.
any ideas why happening/how might prepare it?
hmmm, first i've seen particular error. first guess local firewall, seek running 'telnet localhost 9051' troubleshoot.
on side note torctl has been deprecated in favour of stem.
python tor
Comments
Post a Comment