W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
標準庫的內(nèi)容已經(jīng)非常多了,前面僅僅列舉幾個,但是python給編程者的支持還不僅僅在于標準庫,它還有不可勝數(shù)的第三方庫。因此,如果作為一個python編程者,即使你達到了master的水平,最好的還是要在做某個事情之前,在網(wǎng)上搜一下是否有標準庫或者第三方庫替你完成那件事。因為,偉大的艾薩克·牛頓爵士說過:
如果我比別人看得更遠,那是因為我站在巨人的肩上。
編程,就要站在巨人的肩上。標準庫和第三方庫以及其提供者,就是巨人,我們本應當謙卑地向其學習,并應用其成果。
要是用第三方庫,第一步就是要安裝,在本地安裝完畢,就能如同標準庫一樣使用了。其安裝方法如下:
方法一:利用源碼安裝
在github.com網(wǎng)站可以下載第三方庫的源碼(或者其它途徑),得到源碼之后,在本地安裝。
一般情況,得到的碼格式大概都是 zip 、 tar.zip、 tar.bz2格式的壓縮包。解壓這些包,進入其文件夾,通常會看見一個 setup.py 的文件。如果是Linux或者Mac(我是用ubuntu,特別推薦哦),就在這里運行shell,執(zhí)行命令:
python setup.py install
如果用的是windows,需要打開命令行模式,執(zhí)行上述指令即可。
如此,就能把這個第三庫安裝到系統(tǒng)里。具體位置,要視操作系統(tǒng)和你當初安裝python環(huán)境時設置的路徑而定。默認條件下,windows是在C:\Python2.7\Lib\site-packages
,Linux在/usr/local/lib/python2.7/dist-packages
(這個只是參考,不同發(fā)行版會有差別,具體請讀者根據(jù)自己的操作系統(tǒng),自己找找),Mac在?/Library/Python/2.7/site-packages
。
有安裝就要有卸載,卸載所安裝的庫非常簡單,只需要到相應系統(tǒng)的site-packages目錄,直接刪掉庫文件即卸載。
方法二:pip
用源碼安裝,不是我推薦的,我推薦的是用第三方庫的管理工具安裝。有一個網(wǎng)站,是專門用來存儲第三方庫的,所有在這個網(wǎng)站上的,都能用pip或者easy_install這種安裝工具來安裝。這個網(wǎng)站的地址:https://pypi.python.org/pypi
首先,要安裝pip(python官方推薦這個,我當然要順勢了,所以,就只介紹并且后面也只使用這個工具)。如果讀者跟我一樣,用的是ubuntu或者其它某種Linux,基本不用這個操作,在安裝操作系統(tǒng)的時候已經(jīng)默認把這個東西安裝好了(這還不是用ubuntu的理由嗎?)。如果因為什么原因,沒有安裝,可以使用如下方法:
Debian and Ubuntu:
sudo apt-get install python-pip
Fedora and CentOS:
sudo yum install python-pip
當然,也可以這里下載文件get-pip.py,然后執(zhí)行python get-pip.py
來安裝。這個方法也適用于windows。
pip安裝好了。如果要安裝第三方庫,只需要執(zhí)行pip install XXXXXX
(XXXXXX代表第三方庫的名字)即可。
當?shù)谌綆彀惭b完畢,接下來的使用就如同前面標準庫一樣。
以requests模塊為例,來說明第三方庫的安裝和使用。之所以選這個,是因為前面介紹了urllib和urllib2兩個標準庫的模塊,與之有類似功能的第三方庫中requests也是一個用于在程序中進行http協(xié)議下的get和post請求的模塊,并且被網(wǎng)友說成“好用的要哭”。
說明:下面的內(nèi)容是網(wǎng)友1world0x00提供,我僅做了適當編輯。
pip install requests
安裝好之后,在交互模式下:
>>> import requests
>>> dir(requests)
['ConnectionError', 'HTTPError', 'NullHandler', 'PreparedRequest', 'Request', 'RequestException', 'Response', 'Session', 'Timeout', 'TooManyRedirects', 'URLRequired', '__author__', '__build__', '__builtins__', '__copyright__', '__doc__', '__file__', '__license__', '__name__', '__package__', '__path__', '__title__', '__version__', 'adapters', 'api', 'auth', 'certs', 'codes', 'compat', 'cookies', 'delete', 'exceptions', 'get', 'head', 'hooks', 'logging', 'models', 'options', 'packages', 'patch', 'post', 'put', 'request', 'session', 'sessions', 'status_codes', 'structures', 'utils']
從上面的列表中可以看出,在http中常用到的get,cookies,post等都赫然在目。
>>> r = requests.get("http://www.itdiffer.com")
得到一個請求的實例,然后:
>>> r.cookies
<<class 'requests.cookies.RequestsCookieJar'>[]>
這個網(wǎng)站對客戶端沒有寫任何cookies內(nèi)容。換一個看看:
>>> r = requests.get("http://www.1world0x00.com")
>>> r.cookies
<<class 'requests.cookies.RequestsCookieJar'>[Cookie(version=0, name='PHPSESSID', value='buqj70k7f9rrg51emsvatveda2', port=None, port_specified=False, domain='www.1world0x00.com', domain_specified=False, domain_initial_dot=False, path='/', path_specified=True, secure=False, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]>
原來這樣呀。繼續(xù),還有別的屬性可以看看。
>>> r.headers
{'x-powered-by': 'PHP/5.3.3', 'transfer-encoding': 'chunked', 'set-cookie': 'PHPSESSID=buqj70k7f9rrg51emsvatveda2; path=/', 'expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'keep-alive': 'timeout=15, max=500', 'server': 'Apache/2.2.15 (CentOS)', 'connection': 'Keep-Alive', 'pragma': 'no-cache', 'cache-control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'date': 'Mon, 10 Nov 2014 01:39:03 GMT', 'content-type': 'text/html; charset=UTF-8', 'x-pingback': 'http://www.1world0x00.com/index.php/action/xmlrpc'}
>>> r.encoding
'UTF-8'
>>> r.status_code
200
下面這個比較長,是網(wǎng)頁的內(nèi)容,僅僅截取顯示部分:
>>> print r.text
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1world0x00sec</title>
<link rel="stylesheet" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >
<link rel="canonical" rel="external nofollow" target="_blank" />
<link rel="stylesheet" type="text/css" rel="external nofollow" target="_blank" />
<meta name="description" content="愛生活,愛拉芳。不裝逼還能做朋友。" />
<meta name="keywords" content="php" />
<link rel="pingback" rel="external nofollow" target="_blank" />
......
請求發(fā)出后,requests會基于http頭部對相應的編碼做出有根據(jù)的推測,當你訪問r.text之時,requests會使用其推測的文本編碼。你可以找出requests使用了什么編碼,并且能夠使用r.coding屬性來改變它。
>>> r.content
'\xef\xbb\xbf\xef\xbb\xbf<!DOCTYPE html>\n<html lang="zh-CN">\n <head>\n <meta charset="utf-8">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <title>1world0x00sec</title>\n <link rel="stylesheet" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >\n <link ......
以二進制的方式打開服務器并返回數(shù)據(jù)。
requests發(fā)送post請求,通常你會想要發(fā)送一些編碼為表單的數(shù)據(jù)——非常像一個html表單。要實現(xiàn)這個,只需要簡單地傳遞一個字典給data參數(shù)。你的數(shù)據(jù)字典在發(fā)出請求時會自動編碼為表單形式。
>>> import requests
>>> payload = {"key1":"value1","key2":"value2"}
>>> r = requests.post("http://httpbin.org/post")
>>> r1 = requests.post("http://httpbin.org/post", data=payload)
r沒有加data的請求,看看效果:
r1是加了data的請求,看效果:
多了form項。喵。
>>> r.headers['content-type']
'application/json'
注意,在引號里面的內(nèi)容,不區(qū)分大小寫'CONTENT-TYPE'
也可以。
還能夠自定義頭部:
>>> r.headers['content-type'] = 'adad'
>>> r.headers['content-type']
'adad'
注意,當定制頭部的時候,如果需要定制的項目有很多,需要用到數(shù)據(jù)類型為字典。
網(wǎng)上有一個更為詳細敘述有關(guān)requests模塊的網(wǎng)頁,可以參考:http://requests-docs-cn.readthedocs.org/zh_CN/latest/index.html
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: