标签:webp gui int 表达式 class view web res post
import requests
import re
url=‘https://movie.douban.com/cinema/nowplaying/beijing/‘#豆瓣电影网
resp=requests.get(url)
text=resp.text#返回内容
guize=‘<img src="(.*?)" alt="(.*?)".*?>(\d.*?)<‘#提取电影封面/电影名/评分,小括号内的代表提取内容,提取多个时都保存在一个元祖里面
photo=re.findall(guize,text,re.S)#参数1是规则,2是要匹配的内容,3是换行也匹配
for i in photo:
print(i)
# ‘<img src="https://img3.doubanio.com/view/photo/s_ratio_poster/public/p2568261402.webp" alt="中国机长" rel="nofollow" class="">‘
标签:webp gui int 表达式 class view web res post
原文地址:https://www.cnblogs.com/zhaobobo10/p/11632725.html