码迷,mamicode.com
首页 > 编程语言 > 详细

转载:python发送HTTP请求

时间:2014-11-24 11:32:59      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   os   sp   for   on   div   

1. [代码]GET 方法

import httplib

#-----------------------------

conn = httplib.HTTPConnection("www.python.org")

conn.request("GET", "/index.html")

r1 = conn.getresponse()

print r1.status, r1.reason

06 200 OK

 

data1 = r1.read()

conn.request("GET", "/parrot.spam")

r2 = conn.getresponse()

print r2.status, r2.reason

404 Not Found

data2 = r2.read()

conn.close()


2. [代码]HEAD 方法

import httplib 

#-----------------------------

conn = httplib.HTTPConnection("www.python.org") 

conn.request("HEAD","/index.html") 

res = conn.getresponse() 

print res.status, res.reason 

06 200 OK


data = res.read()

print len(data)

09 0

data == ‘‘

True


3. [代码]POST 方法

import httplib, urllib

#-----------------------------

params = urllib.urlencode({‘spam‘: 1, ‘eggs‘: 2, ‘bacon‘: 0})

headers = {"Content-type": "application/x-www-form-urlencoded",

 ... "Accept": "text/plain"}

conn = httplib.HTTPConnection("musi-cal.mojam.com:80")

conn.request("POST", "/cgi-bin/query", params, headers)

response = conn.getresponse()

print response.status, response.reason

09 200 OK

data = response.read()

conn.close()a

转载:python发送HTTP请求

标签:style   http   io   ar   os   sp   for   on   div   

原文地址:http://www.cnblogs.com/dtest/p/4118176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!