标签:python 端口超时
def curl_tyt(port):
buf=cStringIO.StringIO()
cc=pycurl.Curl()
cc.setopt(cc.URL,‘http://10.67.21.11‘)
cc.setopt(cc.WRITEFUNCTION,buf.write)
cc.setopt(cc.CONNECTTIMEOUT,5)
cc.setopt(cc.TIMEOUT,8)
cc.setopt(cc.PROXY,‘http://10.67.21.11:%s‘%port)
cc.perform()
本文出自 “expect批量同步数据” 博客,请务必保留此出处http://4249964.blog.51cto.com/4239964/1566862
标签:python 端口超时
原文地址:http://4249964.blog.51cto.com/4239964/1566862