使用Tor和Python将流量发送到网页

时间:2018-12-14 02:01:58

标签: python request tor

所以最近我一直在尝试使用Tor来向网页发送流量,并且我在StackOverflow上看到other questions是向Tor发出请求。经过大约一个小时的故障排除,我终于知道了。我使用了accepted answer on this question中的代码(它使用了词干库),并且有效!它连接到Tor。但是...如何向网站发送流量?

感谢您的所有帮助!

这是该question I kept referencing中使用的代码:

from stem import Signal
from stem.control import Controller

with Controller.from_port(port = 9151) as controller:
    controller.authenticate(password='')
    print("Success!")
    controller.signal(Signal.NEWNYM)
    print("New Tor connection processed")

0 个答案:

没有答案