发布时间:2022-08-09 文章分类:编程知识 投稿人:李佳 字号: 默认 | | 超大 打印

Python equivalent of Ruby SOCKsify up vote 0 down vote favorite 1 share [g+] share [fb] share [tw] Ruby has this very nice gem that allows redirecting all network traffic trough a SOCKS proxy require 'socksify' TCPSocket::socks_server = "127.0.0.1" TCPSocket::socks_port = 9050 rubyforge_www = TCPSocket.new("rubyforge.org", 80) # => # Is there any python equivalent? python ruby proxy socks link|edit|flag asked Mar 6 at 15:04 Luca Martinetti 9461926 77% accept rate my super googling skills gave me socksipy.sourceforge.net and sourceforge.net/projects/pysocks. There is also stackoverflow.com/questions/2537726/… –Simon Mar 6 at 15:24