python爬虫猫眼电影
时间: 2023-08-08 09:11:13 浏览: 147
你可以使用Python编写爬虫来获取猫眼电影的信息。首先,你需要安装Python的requests库和BeautifulSoup库,可以通过以下命令安装:
```
pip install requests
pip install beautifulsoup4
```
然后,可以使用以下代码编写一个简单的爬虫来获取猫眼电影的信息:
```python
import requests
from bs4 import BeautifulSoup
url = "https://maoyan.com/"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36"
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, "html.parser")
movies = soup.find_all("div", class_="movie-item-hover")
for movie in movies:
name = movie.find("span", class_="name").text
release_time = movie.find("div", class_="movie-hover-title").find_all("span")[1].text
print("电影名称:", name)
print("上映时间:", release_time)
print("--------------------")
```
以上代码会获取猫眼电影首页的电影名称和上映时间,并打印输出。你可以根据自己的需求进行进一步的处理和保存数据。请注意,网站的结构可能会有变化,所以代码可能需要根据实际情况进行调整。
阅读全文