代码拉取完成,页面将自动刷新
import requests
import re
f = open('电影天堂.scv', 'a+', encoding='utf-8')
href = ""
url = "https://www.dy2018.com/"+href
headers = {
}
result = requests.get(url)
result.encoding = 'gb2312'
date = result.text
compiles = re.compile(r'2023必看热片.*?<ul>(?P<html>.*?)</ul>', re.S)
href = re.compile(r"<li><a href='(?P<aurl>.*?)' title=", re.S)
# 详情页的正则表达式
dateils_compile = re.compile(r'<td colspan="2" align="center" valign="top"><div id="Zoom">.*?片 名'
r'(?P<moviename>.*?)<br />.*?<td style="WORD-WRAP: break-word" bgcolor="#fdfddf"><a href="(?P<download>.*?)">', re.S)
movie = compiles.search(date)
# print(movie.group("html"))
aurl = href.finditer(movie.group("html"))
for item in aurl:
herf = item.group("aurl")
url = url.strip("/")+herf
dateils = requests.get(url)
dateils.encoding = "gb2312"
scvstr = dateils_compile.search(dateils.text)
print(scvstr.group("moviename"), scvstr.group("download"))
break
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。