爬取百度热门排行
Posted jlt965256450
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬取百度热门排行相关的知识,希望对你有一定的参考价值。
import requests from bs4 import BeautifulSoup import bs4 import pandas as pd url = ‘http://top.baidu.com/buzz?b=341&c=513&fr=topbuzz_b1‘ headers = {‘User-Agent‘:‘Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/69.0.3497.100 Safari/537.36‘}# r=requests.get(url,timeout=30,headers=headers) r.encoding=r.apparent_encoding t=r.text soup=BeautifulSoup(t,‘lxml‘) a=[] b=[] for i in soup.find_all(class_="keyword"): a.append(i.get_text().strip()) for j in soup.find_all(‘td‘, class_="last"): b.append(j.get_text().strip()) data=[a,b] c=pd.DataFrame(data,index=["标题","热度"]) print(c.T)
登录网站,管理员工具查看源代码
以上是关于爬取百度热门排行的主要内容,如果未能解决你的问题,请参考以下文章