爬取艺恩电影排行榜用re爬取六页信息
时间: 2024-05-17 12:14:30 浏览: 96
爬虫 爬取豆瓣电影排行榜.zip
5星 · 资源好评率100%
好的,我可以为您提供一个示例代码来爬取艺恩电影排行榜的六页信息。请先确保您已经安装了re模块。
```python
import requests
import re
for page in range(1, 7):
url = f'https://www.endata.com.cn/BoxOffice/BO/Year/total?year=2021&pIndex={page}'
response = requests.get(url)
html = response.content.decode('utf-8')
pattern = r'<tr class="even|odd">.*?<td class="titleColumn">.*?<a.*?>(.*?)</a>.*?</td>.*?<td class="ratingColumn imdbRating">.*?<strong>(.*?)</strong>'
results = re.findall(pattern, html, re.S)
for result in results:
print(result[0], result[1])
```
这段代码会爬取2021年的电影排行榜前六页信息。每页包含50部电影,因此总共会输出300部电影的名称和评分。注意,为了避免被反爬虫机制封锁,建议加入适当的延时等反爬虫措施。此外,由于使用正则表达式匹配HTML代码,代码可读性较差,建议使用其他库如BeautifulSoup或lxml。
阅读全文