php 正则 抓取网页(本文实例讲述Python使用正则表达式抓取网页图片的方法-本文)
优采云 发布时间: 2022-01-12 14:00php 正则 抓取网页(本文实例讲述Python使用正则表达式抓取网页图片的方法-本文)
本文中的示例描述了 Python 如何使用正则表达式来抓取 Web 图像。分享给大家,供大家参考,如下:
#!/usr/bin/python import re import urllib #获取网页信息 def getHtml(url): page = urllib.urlopen(url) html = page.read() return html def getImg(html): #匹配网页中的图片 reg = r'src="(.*?\.jpg-600)" alt' imgre = re.compile(reg) imglist = re.findall(imgre,html) x = 0 for imgurl in imglist: urllib.urlretrieve(imgurl,'%s.jpg-600' % x) x+=1 html = getHtml("http://photo.bitauto.com/?WT.mc_id=360tpdq") print getImg(html)
PS:这里有两个非常方便的正则表达式工具供大家参考:
JavaScript 正则表达式在线测试工具:
正则表达式在线*敏*感*词*:
来源高代网从事#code%码网
更多关于Python的知识请参考本站专题:《Python正则表达式用法总结》、《Python数据结构与算法教程》、《Python套接字编程技巧总结》、《Python总结《函数使用技巧》、《Python Socket编程技巧总结》《Python字符串操作技巧总结》、《Python入门与进阶经典教程》和《Python文件和目录操作技巧总结》
希望这篇文章对你的 Python 编程有所帮助。