我尝试使用python脚本连接到https协议上的服务器。有人可以给我一个向https服务器发送GET请求的工作示例,或者如何使用python创建https连接的Web资源吗?
我了解到python上的模块httplib支持创建http连接,但不支持https连接?
import httplib
conn = httplib.HTTPConnection('https://adsche.skplanet.com/api/startNewTurn')
header = {"Content-type" : "application/json"}
conn.request('GET', '/announce?info_hash=%da', '', header)
r1 = conn.getresponse()
print r1.status, r1.reason
data1 = r1.read()
print data1