您好,登錄后才能下訂單哦!
這篇文章主要介紹如何使用Python爬取最好大學(xué)網(wǎng)大學(xué)排名,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
具體內(nèi)容如下
源代碼:
#-*-coding:utf-8-*- ''''' Created on 2017年3月17日 @author: lavi ''' import requests from bs4 import BeautifulSoup import bs4 def getHTMLText(url): try: r = requests.get(url) r.raise_for_status r.encoding = r.apparent_encoding return r.text except: return "" def fillUnivList(univList,html): soup = BeautifulSoup(html,"html.parser") for tr in soup.find("tbody").children: if isinstance(tr,bs4.element.Tag): #tobody有的節(jié)點(diǎn)是空串,屬于要判斷類型進(jìn)行過濾 tds = tr("td") #等價(jià)于tr.find_all("td") univList.append([tds[0].string,tds[1].string,tds[2].string]) #NavigableString可以跨越多個(gè)層次 def printUnivList(univList,num): tplt = "{0:^6}\t{1:^10}\t{2:^6}" #:前的數(shù)字說明使用format函數(shù)的第幾個(gè)參數(shù)填充模板 print(tplt.format("排名","學(xué)校名稱","總分",chr(12288))) for i in range(num): u = univList[i] print(tplt.format(u[0],u[1],u[2],chr(12288))) def main(): url= "http://www.zuihaodaxue.cn/zuihaodaxuepaiming2016.html"; html = getHTMLText(url) univList=[] fillUnivList(univList,html) printUnivList(univList,20) main()
以上是“如何使用Python爬取最好大學(xué)網(wǎng)大學(xué)排名”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。