最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Python httplib模塊使用實(shí)例

 更新時(shí)間:2015年04月11日 11:25:43   投稿:junjie  
這篇文章主要介紹了Python httplib模塊使用實(shí)例,httplib模塊是一個(gè)底層基礎(chǔ)模塊,本文講解了httplib模塊的常用方法及使用實(shí)例,需要的朋友可以參考下

httplib模塊是一個(gè)底層基礎(chǔ)模塊,實(shí)現(xiàn)的功能比較少,正常情況下比較少用到.推薦用urllib, urllib2, httplib2.

HTTPConnection 對(duì)象

class httplib.HTTPConnection(host[, port[, strict[, timeout[, source_address]]]])

創(chuàng)建HTTPConnection對(duì)象

HTTPConnection.request(method, url[, body[, headers]])

發(fā)送請(qǐng)求

HTTPConnection.getresponse()

獲得響應(yīng)

HTTPResponse對(duì)象

HTTPResponse.read([amt])
Reads and returns the response body, or up to the next amt bytes.

HTTPResponse.getheader(name[, default])

獲得指定頭信息

HTTPResponse.getheaders()

獲得(header, value)元組的列表

HTTPResponse.fileno()

獲得底層socket文件描述符

HTTPResponse.msg

獲得頭內(nèi)容

HTTPResponse.version

獲得頭http版本

HTTPResponse.status

獲得返回狀態(tài)碼

HTTPResponse.reason

獲得返回說明

實(shí)例

復(fù)制代碼 代碼如下:

#!/usr/bin/python
import httplib

conn = httplib.HTTPConnection("m.fzitv.net")
conn.request("GET", "/")
r1 = conn.getresponse()

print r1.status, r1.reason
print '-' * 40

headers = r1.getheaders()
for h in headers:
    print h
print '-' * 40

print r1.msg

輸出:

復(fù)制代碼 代碼如下:

200 OK
----------------------------------------
('content-length', '106883')
('accept-ranges', 'bytes')
('vary', 'Accept-Encoding, Accept-Encoding')
('keep-alive', 'timeout=20')
('server', 'ngx_openresty')
('last-modified', 'Fri, 10 Apr 2015 09:30:10 GMT')
('connection', 'keep-alive')
('etag', '"55279822-1a183"')
('date', 'Fri, 10 Apr 2015 09:48:15 GMT')
('content-type', 'text/html; charset=utf-8')
----------------------------------------
Server: ngx_openresty
Date: Fri, 10 Apr 2015 09:48:15 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 106883
Connection: keep-alive
Keep-Alive: timeout=20
Vary: Accept-Encoding
Last-Modified: Fri, 10 Apr 2015 09:30:10 GMT
Vary: Accept-Encoding
ETag: "55279822-1a183"
Accept-Ranges: bytes

相關(guān)文章

最新評(píng)論

双鸭山市| 曲沃县| 泾川县| 千阳县| 渑池县| 菏泽市| 泰顺县| 视频| 新民市| 灵台县| 聂荣县| 获嘉县| 巫山县| 大丰市| 蒙城县| 安阳县| 平湖市| 华容县| 鸡泽县| 明溪县| 岢岚县| 台中市| 章丘市| 鹤峰县| 巴东县| 衡东县| 临安市| 崇左市| 苍山县| 兴城市| 西平县| 临泽县| 永州市| 牙克石市| 若尔盖县| 固始县| 樟树市| 珲春市| 上蔡县| 行唐县| 都兰县|