我开始使用python(必须是python)编写一个脚本来将一些更改从本地数据库同步到远程数据库。它每 3 小时运行一次。当我开始时,我遇到了给出 EOF 错误的 urllib2 错误。经过一番摸索后,我发现了以下修复程序,它似乎可以让所有东西都启动并运行:
class HTTPSConnection(HTTPConnection):
"This class allows communication via SSL."
default_port = HTTPS_PORT
def __init__(self, host, port=None, key_file=None, cert_file=None,
strict=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
HTTPConnection.__init__(self, host, port, strict, timeout)
self.key_file = key_file
self.cert_file = cert_file
def connect(self):
"Connect to a host on a given (SSL) port."
sock = socket.create_connection((self.host, self.port),
self.timeout)
if self._tunnel_host:
self.sock = sock
self._tunnel()
# this is the only line we modified from the httplib.py file
# we added the ssl_version variable
self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_TLSv1)
#now we override the one in httplib
httplib.HTTPSConnection = HTTPSConnection
今天这又开始抛出同样的错误。使用python 2.6。还有其他解决方案或我在这里缺少的东西吗?