[+]html
httplib2功能介紹:http://code.google.com/p/httplib2/python
httplib2實例頁面:http://code.google.com/p/httplib2/w/listweb
httplib2問題提交:http://code.google.com/p/httplib2/issues/list緩存
好吧,我以爲官方的樣例仍是比較全的,這裏就直接貼一下吧。服務器
- import httplib2
- h = httplib2.Http(".cache")
- resp, content = h.request("http://example.org/", "GET")
- import httplib2
- h = 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'} )
- import httplib2
- h = httplib2.Http(".cache")
- resp, content = h.request("http://bitworking.org/") #請求被緩存,下次還會用這個緩存而不去發送新的請求,緩存生效時間有web配置決定
- ...
- resp, content = h.request("http://bitworking.org/",
- headers={'cache-control':'no-cache'}) ##設置不用緩存,當次將不用緩存,而是直接發一個新的請求
- >>> 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'}
- #!/usr/bin/env python
- import urllib
- import httplib2
- http = 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) ##本次請求就不用帶用戶名,密碼了
- import httplib2
- import socks ##須要第三方模塊
- httplib2.debuglevel=4
- h = httplib2.Http(proxy_info = httplib2.ProxyInfo(socks.PROXY_TYPE_HTTP, 'localhost', 8000))
- r,c = h.request("http://bitworking.org/news/")
======================================================================================cookie
下面是我本身對模塊功能的嘗試:app
另外,httplib2模塊自己還有其它的對象或屬性,能夠經過print dir(httplib2)來查看dom