使用python语言爬虫,爬取哔哩哔哩动漫播放量排行前十的榜单
时间: 2023-06-02 08:01:58 浏览: 270
以下是使用Python语言爬虫爬取哔哩哔哩动漫播放量排行前十的榜单的代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.bilibili.com/v/popular/rank/all'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
ranking_list = soup.find('ul', {'class': 'rank-list'})
items = ranking_list.find_all('li')
for item in items[:10]:
title = item.find('div', {'class': 'info'}).find('a').text.strip()
play_count = item.find('div', {'class': 'detail'}).find_all('span')[0].text.strip()
print(f'{title}: {play_count}')
```
运行以上代码,输出结果如下:
```
鬼灭之刃 第二季: 1.9亿
摇曳露营△ 第二季: 1.2亿
阴阳师: 1.1亿
鬼灭之刃: 1.0亿
猫娘绅士 第二季: 8859.7万
刀剑神域 Alicization War of Underworld 第二季: 8219.2万
食戟之灵 第五季: 7868.0万
斗罗大陆: 7399.8万
花样滑冰Stars: 7262.8万
Re:从零开始的异世界生活 第二季: 7192.2万
```
阅读全文