python微博热搜榜代码
时间: 2024-03-08 19:44:18 浏览: 91
Python微博热搜榜代码可以通过爬取微博热搜页面的方式来实现。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求获取微博热搜页面内容
url = 'https://s.weibo.com/top/summary?cate=realtimehot'
response = requests.get(url)
html = response.text
# 使用BeautifulSoup解析页面内容
soup = BeautifulSoup(html, 'html.parser')
# 定位热搜榜列表
hot_list = soup.find_all('tr', class_='')
# 遍历热搜榜列表并输出热搜内容
for hot in hot_list:
rank = hot.find('td', class_='td-01').text.strip()
keyword = hot.find('td', class_='td-02').text.strip()
hot_num = hot.find('td', class_='td-03').text.strip()
print(f'排名:{rank},关键词:{keyword},热度:{hot_num}')
```
这段代码使用了`requests`库发送HTTP请求获取微博热搜页面的HTML内容,然后使用`BeautifulSoup`库解析HTML内容,定位到热搜榜列表,并遍历输出每个热搜的排名、关键词和热度。
阅读全文