我收到了这个错误:
socket.error: [Errno 54] Connection reset by peer
我想要做的就是python中的以下内容:
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
id = response.read()
之前的一些相关问题建议使用time.sleep来摆弄线程。我没有取得任何成功,但我会感激任何建议。