用python爬取豆瓣电影的代码
时间: 2023-10-03 19:10:51 浏览: 204
爬取豆瓣电影.zip
以下是用Python爬取豆瓣电影的代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://movie.douban.com/top250'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
res = requests.get(url, headers=headers)
soup = BeautifulSoup(res.text, 'html.parser')
movie_list = soup.find('ol', class_='grid_view').find_all('li')
for movie in movie_list:
title = movie.find('span', class_='title').text
rating = movie.find('span', class_='rating_num').text
print(title, rating)
```
这个代码会爬取豆瓣电影排行榜前250部电影的电影名和评分,并将它们打印到控制台上。需要注意的是,为了避免被豆瓣网站反爬虫机制封禁IP,我们设置了headers模拟浏览器访问。
阅读全文