爬取微博热搜
Posted 1061321925wu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬取微博热搜相关的知识,希望对你有一定的参考价值。
import requests from lxml import etree ###网址 url="https://s.weibo.com/top/summary?Refer=top_hot&topnav=1&wvr=6" ###模拟浏览器 header={‘User-Agent‘:‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/73.0.3683.103 Safari/537.36‘} ###主函数 def main(): ###获取html页面 html=etree.HTML(requests.get(url,headers=header).text) rank=html.xpath(‘//td[@class="td-01 ranktop"]/text()‘) affair=html.xpath(‘//td[@class="td-02"]/a/text()‘) view = html.xpath(‘//td[@class="td-02"]/span/text()‘) top=affair[0] affair=affair[1:] print(‘{0:<10} {1:<40}‘.format("置顶",top)) for i in range(0, len(affair)): print("{0:<10} {1:{3}<30} {2:{3}>20}".format(rank[i],affair[i],view[i],chr(12288))) main()
结果
以上是关于爬取微博热搜的主要内容,如果未能解决你的问题,请参考以下文章