假如你是python爬虫师,帮我写一段爬取网页https://www.mgtvyy.com/index.php/vod/play/id/391648/sid/3/nid/1.html中的影片的代码
时间: 2023-10-05 10:08:56 浏览: 650
好的,以下是一个简单的爬虫程序,使用 Python 语言和 requests, BeautifulSoup 库来爬取 MGTV 影片网站中的影片信息。
``` python
import requests
from bs4 import BeautifulSoup
url = 'https://www.mgtvyy.com/index.php/vod/play/id/391648/sid/3/nid/1.html'
response = requests.get(url)
html = response.text
soup = BeautifulSoup(html, 'html.parser')
# 获取影片名称
title = soup.title.string
# 获取影片播放地址
play_url = soup.find('iframe')['src']
# 获取影片海报地址
poster_url = soup.find('img')['src']
print('影片名称:', title)
print('影片播放地址:', play_url)
print('影片海报地址:', poster_url)
```
这个程序会输出影片的名称、播放地址和海报地址。你可以根据自己的需要对这些信息进行进一步的处理和分析。需要注意的是,爬取网站信息时需要遵守相关法律法规,不得进行非法的数据采集和使用。
阅读全文