写一段爬取https://www.iqiyi.com/v_dir6kj1j2w.html电影的python代码
时间: 2023-12-01 22:02:40 浏览: 113
以下是一个简单的 Python 代码示例,演示如何爬取爱奇艺电影页面 https://www.iqiyi.com/v_dir6kj1j2w.html 的相关信息:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.iqiyi.com/v_dir6kj1j2w.html'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 获取电影标题
title = soup.find('h1', class_='main-title').text.strip()
print('电影标题:', title)
# 获取电影评分
score = soup.find('span', class_='score').text.strip()
print('电影评分:', score)
# 获取电影简介
desc = soup.find('div', class_='episodeIntro').text.strip()
print('电影简介:', desc)
# 获取电影演员列表
actors = soup.find_all('a', class_='name')
actors_list = [actor.text.strip() for actor in actors]
print('电影演员:', actors_list)
```
以上代码使用 requests 库发送 HTTP 请求,并通过 BeautifulSoup 库解析 HTML 页面。它可以获取电影标题、评分、简介和演员列表等信息。但是请注意,爬取网站内容时需要遵守相关法律法规和网站的使用条款。
阅读全文