1 2 3 4 5 6 7 8 | conn = httplib.HTTPConnection(domain) conn.request("POST", urlpath, urllib.urlencode(postdata)) resp = conn.getresponse() http_body = resp.read() print "response code: %d" % resp.status print "----------------- HTTP BODY ----------------" print http_body |
こんな感じで、resp.statusにてレスポンスコードを参照することが可能です。