脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 使用Python爬取最好大学网大学排名

使用Python爬取最好大学网大学排名

2021-01-17 00:31Lavi_qq_2910138025 Python

这篇文章主要介绍了如何使用Python爬取最好大学网大学排名,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Python爬取最好大学网大学排名的具体代码,供大家参考,具体内容如下

源代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#-*-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有的节点是空串,属于要判断类型进行过滤
      tds = tr("td") #等价于tr.find_all("td")
      univList.append([tds[0].string,tds[1].string,tds[2].string]) #NavigableString可以跨越多个层次
 
def printUnivList(univList,num):
  tplt = "{0:^6}\t{1:^10}\t{2:^6}" #:前的数字说明使用format函数的第几个参数填充模板
  print(tplt.format("排名","学校名称","总分",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()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/liuweiyuxiang/article/details/62897556

延伸 · 阅读

精彩推荐