Python 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í)例
#!/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
輸出:
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)文章
python中HTMLParser模塊知識(shí)點(diǎn)總結(jié)
在本篇文章里小編給大家整理的是一篇關(guān)于python中HTMLParser模塊知識(shí)點(diǎn)內(nèi)容,有興趣的朋友們可以跟著學(xué)習(xí)下。2021-01-01
Python實(shí)現(xiàn)GIF動(dòng)圖以及視頻卡通化詳解
本文主要介紹了如何使用Python中的animegan2-pytorch實(shí)現(xiàn)動(dòng)圖以及視頻的卡通化效果,文中的代碼具有一定的學(xué)習(xí)價(jià)值,需要的朋友可以參考一下2021-12-12
python 如何利用chinese_calendar 獲取上一個(gè)工作日日期
這篇文章主要介紹了python 利用chinese_calendar 獲取上一個(gè)工作日日期,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-03-03
pymongo實(shí)現(xiàn)多結(jié)果進(jìn)行多列排序的方法
這篇文章主要介紹了pymongo實(shí)現(xiàn)多結(jié)果進(jìn)行多列排序的方法,涉及Python排序的相關(guān)技巧,需要的朋友可以參考下2015-05-05
Python 稀疏矩陣-sparse 存儲(chǔ)和轉(zhuǎn)換
這篇文章主要介紹了Python 稀疏矩陣-sparse 存儲(chǔ)和轉(zhuǎn)換的相關(guān)資料,需要的朋友可以參考下2017-05-05
Django上傳excel表格并將數(shù)據(jù)寫入數(shù)據(jù)庫的詳細(xì)步驟
這篇文章主要介紹了Django上傳excel表格并將數(shù)據(jù)寫入數(shù)據(jù)庫,將文件上傳到服務(wù)器指定路徑,其實(shí)很簡(jiǎn)單,本文分三個(gè)步驟給大家詳細(xì)介紹,需要的朋友可以參考下2022-06-06

