• 大小: 0.98KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  py  大学  爬取  

资源简介

requests库和beautifulsoup库爬取国内大学排名

资源截图

代码片段和文件信息

import requests
from bs4 import BeautifulSoup
import bs4

def getHTMLText(url):
    try:
        r = requests.get(url timeout = 30)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ““

def fillUnivList(ulist html):
    soup  = BeautifulSoup(html “html.parser“)
    for tr in soup.find(‘tbody‘).children:
        if isinstance(tr bs4.element.Tag):
            tds = tr(‘td‘)
            ulist.append([t

评论

共有 条评论