国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

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

2019-11-25 17:46:41
字體:
供稿:網(wǎng)友

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

HTTPConnection 對象

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

創(chuàng)建HTTPConnection對象

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

發(fā)送請求

HTTPConnection.getresponse()

獲得響應(yīng)

HTTPResponse對象

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.survivalescaperooms.com")
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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 永靖县| 房产| 界首市| 广宁县| 宾阳县| 吉水县| 万盛区| 湖州市| 文水县| 修文县| 栾城县| 铅山县| 天门市| 商丘市| 西乌珠穆沁旗| 巨鹿县| 秦安县| 庆城县| 教育| 阿拉善盟| 习水县| 边坝县| 同仁县| 清水河县| 丰宁| 竹北市| 巴林右旗| 灵石县| 白银市| 石河子市| 佛坪县| 浏阳市| 合江县| 会昌县| 务川| 昔阳县| 收藏| 务川| 开阳县| 桓台县| 中阳县|