Python httplib模塊使用實(shí)例
來(lái)源:易賢網(wǎng) 閱讀:1251 次 日期:2015-04-14 15:22:29
溫馨提示:易賢網(wǎng)小編為您整理了“Python httplib模塊使用實(shí)例”,方便廣大網(wǎng)友查閱!

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

獲得返回說(shuō)明

實(shí)例

代碼如下:

#!/usr/bin/python

import httplib

conn = httplib.HTTPConnection("")

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

輸出:

代碼如下:

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

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:Python httplib模塊使用實(shí)例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢(xún) | 簡(jiǎn)要咨詢(xún)須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話(huà):0871-65099533/13759567129 獲取招聘考試信息及咨詢(xún)關(guān)注公眾號(hào):hfpxwx
咨詢(xún)QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)