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

python中发送get或post请求

时间:2014-11-28 17:38:35      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

示例

get

import httplib
import uuid
import time

url = "/KM/test.php?time="
url += str(int(time.time()))
url += "&token="
url += uuid.uuid4().hex

print url

conn = httplib.HTTPConnection("a.bbbb.net:8008")

headerdata = {"Host":"a.bbbb.net:8008",
              "Connection":"Keep-Alive",
              "Accept-Encoding":"gzip"
              }

conn.request(method="GET",url=url,body=None,headers = headerdata)

response = conn.getresponse()
res= response.read()
print res

post[转]

import httplib, urllib
 
httpClient = None
try:
    params = urllib.urlencode({name: tom, age: 22})
    headers = {"Content-type": "application/x-www-form-urlencoded"
                    , "Accept": "text/plain"}
 
    httpClient = httplib.HTTPConnection("localhost", 80, timeout=30)
    httpClient.request("POST", "/test.php", params, headers)
 
    response = httpClient.getresponse()
    print response.status
    print response.reason
    print response.read()
    print response.getheaders() #获取头信息
except Exception, e:
    print e
finally:
    if httpClient:
        httpClient.close()

 

python中发送get或post请求

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/fatterbetter/p/4128712.html

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