大学排名数据爬取

Posted nclong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大学排名数据爬取相关的知识,希望对你有一定的参考价值。

网址:http://www.qianmu.org/ranking/1528.htm

import requests
from lxml import etree
import lxml

resp=requests.get(‘http://www.qianmu.org/2018QS%E4%B8%96%E7%95%8C%E5%A4%A7%E5%AD%A6%E6%8E%92%E5%90%8D‘)
selector=lxml.etree.html(resp.text)
links=selector.xpath(‘//div[@id="content"]//td[2]/a/@href‘)
for link in links:
    # print(link)
    r=requests.get(link)
    selector=lxml.etree.HTML(r.text)
    data={}
    data[‘name‘]=selector.xpath(‘//div[@id="wikiContent"]/h1/text()‘)
    key=selector.xpath(‘//div[@id="wikiContent"]/div[@class="infobox"]//table//td[1]/p/text()‘)
    cols=selector.xpath(‘//div[@id="wikiContent"]/div[@class="infobox"]//table//td[2]‘)
    values=[]
    for col in cols:
        values.append(‘‘.join(col.xpath(‘.//text()‘)))
    # print(len(key),len(value1))
    for i in range(len(key)):
        data[key[i]]=values[i]
    print(data)

  技术图片

 

以上是关于大学排名数据爬取的主要内容,如果未能解决你的问题,请参考以下文章

网络爬虫的提取爬虫实例

Python爬虫——定向爬取“中国大学排名网”

大学排名数据爬取

python爬取中国大学排名

python爬虫爬取最好大学排名

中国大学排名定向爬虫