使用套接字库(python3)通过代理连接到服务器

时间:2016-08-21 15:46:10

标签: sockets python-3.x proxy connect

我想使用套接字库通过http代理连接到服务器(不一定是网络服务器)。有可能吗?

例如(带请求库):

import requests

r = requests.get("http://www.google.com", #but not necessary to http port.
                 proxies={"http": "http://ipproxy:portproxy"})

-UPDATE -

import urllib.request

pr = "ipproxy:portproxy"

while True:
    try:
        proxy = urllib.request.ProxyHandler({'http': pr})
        opener = urllib.request.build_opener(proxy)
        urllib.request.install_opener(opener)
        url = "ftp://ip" # or ssh:// or some other port
        data = None
        headers = {}
        req = urllib.request.Request(url, data, headers)
        print ("Request sent")
    except:
        print ("An error occurred")

1 个答案:

答案 0 :(得分:1)

对于大多数类型的连接(HTTP和FTP等,可能是HTTPS,虽然这有点棘手)可以使用带有urllib对象的ProxyHandler模块。