httplib2功能介紹:http://code.google.com/p/httplib2/
httplib2執行個體頁面:http://code.google.com/p/httplib2/w/list
httplib2問題提交:http://code.google.com/p/httplib2/issues/list
好吧,我覺得官方的範例還是比較全的,這裡就直接貼一下吧。
Simple Retrieval
import httplib2h = httplib2.Http(".cache")resp, content = h.request("http://example.org/", "GET")
Authenticationimport httplib2h = httplib2.Http(".cache")h.add_credentials('name', 'password')resp, content = h.request("https://example.org/chap/2", ##ssl + base認證 "PUT", body="This is text", headers={'content-type':'text/plain'} )
Cache-Controlimport httplib2h = httplib2.Http(".cache")resp, content = h.request("http://bitworking.org/") #請求被緩衝,下次還會用這個緩衝而不去發送新的請求,緩衝生效時間有web配置決定 ...resp, content = h.request("http://bitworking.org/", headers={'cache-control':'no-cache'}) ##設定不用緩衝,當次將不用緩衝,而是直接發一個新的請求
Forms>>> from httplib2 import Http>>> from urllib import urlencode>>> h = Http()>>> data = dict(name="Joe", comment="A test comment")>>> resp, content = h.request("http://bitworking.org/news/223/Meet-Ares", "POST", urlencode(data))>>> resp{'status': '200', 'transfer-encoding': 'chunked', 'vary': 'Accept-Encoding,User-Agent', 'server': 'Apache', 'connection': 'close', 'date': 'Tue, 31 Jul 2007 15:29:52 GMT', 'content-type': 'text/html'}
Cookies#!/usr/bin/env pythonimport urllibimport httplib2http = httplib2.Http()url = 'http://www.example.com/login' body = {'USERNAME': 'foo', 'PASSWORD': 'bar'}headers = {'Content-type': 'application/x-www-form-urlencoded'}response, content = http.request(url, 'POST', headers=headers, body=urllib.urlencode(body))headers = {'Cookie': response['set-cookie']} ###將獲得cookie設定到要求標頭中,以備下次請求使用url = 'http://www.example.com/home' response, content = http.request(url, 'GET', headers=headers) ##本次請求就不用帶使用者名稱,密碼了
Proxiesimport httplib2import socks ##需要第三方模組httplib2.debuglevel=4h = httplib2.Http(proxy_info = httplib2.ProxyInfo(socks.PROXY_TYPE_HTTP, 'localhost', 8000))r,c = h.request("http://bitworking.org/news/")
======================================================================================
下面是我自己對模組功能的嘗試:
Http對象的構造方法: __init__(self, cache=None, timeout=None, proxy_info=None, ca_certs=None, disable_ssl_certificate_validation=False) proxy_info 的值是一個 ProxyInfo instance. | | 'cache': 存放cache的位置,要麼為字串,要麼為支援檔案快取介面的對象 | | timeout: 逾時時間,預設時會取python對socket連結逾時的值 | | ca_certs: 一個用於ssl伺服器認證用的包涵了主CA認證的檔案路徑,預設會使用httplib2綁定的認證 | | disable_ssl_certificate_validation: 確定是否進行ssl認證 | | add_certificate(self, key, cert, domain) | 添加一個ssl認證key和檔案 | | add_credentials(self, name, password, domain='') | 添加一個使用者名稱,密碼資訊 | | clear_credentials(self) | 刪除掉所有的使用者名稱,密碼資訊,貌似還是可以存多個使用者名稱和密碼 Http.request(self, uri, method='GET', body=None, headers=None, redirections=5, connection_type=None) 說明: 執行單次的http請求 uri: 一個以'http' 或 'https'開頭的資源定位器字串,必須是一個絕對的地址 method: 支援所有的http請求方式。如: GET, POST, DELETE, etc.. body: 請求的附件資料,一個經過urllib.urlencode編碼的字串 headers: 要求標頭資訊,一個字典對象 redirections: 最大的自動連續的重新導向次數預設為5 返回: (response, content)元組,response是一個httplib2.Response對象,content就是包含網頁源碼的字串 httplib2.Response對象 其實就是一個包含所有頭資訊的字典,因為它本身就是整合自字典對象的
另外,httplib2模組本身還有其它的對象或屬性,可以通過print dir(httplib2)來查看