Shammer's Philosophy

My private adversaria

2014-08-20から1日間の記事一覧

Send HTTP Request with python

Before I wrote python http client with python socket in this article, but this is not a socket version, using httplib. GET connection = httplib.HTTPSConnection(host) connection.request("GET", uri) response = json.loads(connection.getrespon…