############################## # GETでHTTP通信して、Yahooのトップページを引いてくる import http.client conn = http.client.HTTPConnection( "www.yahoo.co.jp" ) conn.request( "GET", "/" ) res = conn.getresponse() # レスポンスコードの表示 print(response.status, response.reason) #=> 200 OK # 結果はbitesで返ってくるので、文字列として扱う場合はdecodeする print( res.readall().decode( "UTF-8" ) ) conn.close() ############################## # POSTでHTTP通信してみる im