天天看點

Python高手之路【八】python基礎之requests子產品

1、Requests子產品說明

Requests 是使用 Apache2 Licensed 許可證的 HTTP 庫。用 Python 編寫,真正的為人類着想。

Python 标準庫中的 urllib2 子產品提供了你所需要的大多數 HTTP 功能,但是它的 API 太渣了。它是為另一個時代、另一個網際網路所建立的。它需要巨量的工作,甚至包括各種方法覆寫,來完成最簡單的任務。

在Python的世界裡,事情不應該這麼麻煩。

Requests 使用的是 urllib3,是以繼承了它的所有特性。Requests 支援 HTTP 連接配接保持和連接配接池,支援使用 cookie 保持會話,支援檔案上傳,支援自動确定響應内容的編碼,支援國際化的 URL 和 POST 資料自動編碼。現代、國際化、人性化。

(以上轉自Requests官方文檔)

2、Requests子產品安裝

requests子產品下載下傳位址:http://docs.python-requests.org/en/latest/user/install/#install

然後執行安裝,解壓檔案,進入到檔案目錄,看到setup.py檔案,即可!在空白處按住shift鍵,點右鍵,選擇”在此處打開指令視窗“,然後敲下面的指令

python setup.py install      

也可以使用pip安裝,

pip install requests      

也可以使用easy_install安裝

easy_install requests      

嘗試在IDE中import requests,如果沒有報錯,那麼安裝成功。

3、Requests子產品簡單入門

1 #HTTP請求類型
 2 #get類型
 3 r = requests.get('https://github.com/timeline.json')
 4 #post類型
 5 r = requests.post("http://m.ctrip.com/post")
 6 #put類型
 7 r = requests.put("http://m.ctrip.com/put")
 8 #delete類型
 9 r = requests.delete("http://m.ctrip.com/delete")
10 #head類型
11 r = requests.head("http://m.ctrip.com/head")
12 #options類型
13 r = requests.options("http://m.ctrip.com/get")
14 
15 #擷取響應内容
16 print r.content #以位元組的方式去顯示,中文顯示為字元
17 print r.text #以文本的方式去顯示
18 
19 #URL傳遞參數
20 payload = {'keyword': '日本', 'salecityid': '2'}
21 r = requests.get("http://m.ctrip.com/webapp/tourvisa/visa_list", params=payload) 
22 print r.url #示例為http://m.ctrip.com/webapp/tourvisa/visa_list?salecityid=2&keyword=日本
23 
24 #擷取/修改網頁編碼
25 r = requests.get('https://github.com/timeline.json')
26 print r.encoding
27 r.encoding = 'utf-8'
28 
29 #json處理
30 r = requests.get('https://github.com/timeline.json')
31 print r.json() #需要先import json    
32 
33 #定制請求頭
34 url = 'http://m.ctrip.com'
35 headers = {'User-Agent' : 'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19'}
36 r = requests.post(url, headers=headers)
37 print r.request.headers
38 
39 #複雜post請求
40 url = 'http://m.ctrip.com'
41 payload = {'some': 'data'}
42 r = requests.post(url, data=json.dumps(payload)) #如果傳遞的payload是string而不是dict,需要先調用dumps方法格式化一下
43 
44 #post多部分編碼檔案
45 url = 'http://m.ctrip.com'
46 files = {'file': open('report.xls', 'rb')}
47 r = requests.post(url, files=files)
48 
49 #響應狀态碼
50 r = requests.get('http://m.ctrip.com')
51 print r.status_code
52     
53 #響應頭
54 r = requests.get('http://m.ctrip.com')
55 print r.headers
56 print r.headers['Content-Type']
57 print r.headers.get('content-type') #通路響應頭部分内容的兩種方式
58     
59 #Cookies
60 url = 'http://example.com/some/cookie/setting/url'
61 r = requests.get(url)
62 r.cookies['example_cookie_name']    #讀取cookies
63     
64 url = 'http://m.ctrip.com/cookies'
65 cookies = dict(cookies_are='working')
66 r = requests.get(url, cookies=cookies) #發送cookies
67 
68 #設定逾時時間
69 r = requests.get('http://m.ctrip.com', timeout=0.001)
70 
71 #設定通路代理
72 proxies = {
73            "http": "http://10.10.10.10:8888",
74            "https": "http://10.10.10.100:4444",
75           }
76 r = requests.get('http://m.ctrip.com', proxies=proxies)      

4、Requests示例

json請求

1 #!/user/bin/env python
 2 #coding=utf-8
 3 import requests
 4 import json
 5 
 6 class url_request():
 7     def __init__(self):
 8             """ init """    
 9 
10 if __name__=='__main__':
11     headers = {'Content-Type' : 'application/json'}
12     payload = {'CountryName':'中國',
13                'ProvinceName':'陝西省',
14                'L1CityName':'漢中',
15                'L2CityName':'城固',
16                'TownName':'',
17                'Longitude':'107.33393',
18                'Latitude':'33.157131',
19                'Language':'CN'
20                }
21     r = requests.post("http://www.xxxxxx.com/CityLocation/json/LBSLocateCity",headers=headers,data=payload)
22     #r.encoding = 'utf-8'
23     data=r.json()
24     if r.status_code!=200:
25         print "LBSLocateCity API Error " + str(r.status_code)
26     print data['CityEntities'][0]['CityID'] #列印傳回json中的某個key的value
27     print data['ResponseStatus']['Ack']
28     print json.dumps(data,indent=4,sort_keys=True,ensure_ascii=False) #樹形列印json,ensure_ascii必須設為False否則中文會顯示為unicode      

xml請求

1 #!/user/bin/env python
 2 #coding=utf-8
 3 import requests
 4 
 5 class url_request():
 6     def __init__(self):
 7             """ init """    
 8 
 9 if __name__=='__main__':
10     
11     headers = {'Content-type': 'text/xml'}
12     XML = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><Request xmlns="http://tempuri.org/"><jme><JobClassFullName>WeChatJSTicket.JobWS.Job.JobRefreshTicket,WeChatJSTicket.JobWS</JobClassFullName><Action>RUN</Action><Param>1</Param><HostIP>127.0.0.1</HostIP><JobInfo>1</JobInfo><NeedParallel>false</NeedParallel></jme></Request></soap:Body></soap:Envelope>'
13     url = 'http://jobws.push.mobile.xxxxxxxx.com/RefreshWeiXInTokenJob/RefreshService.asmx'
14     r = requests.post(url,headers=headers,data=XML)
15     #r.encoding = 'utf-8'
16     data = r.text
17     print data      

繼續閱讀