网络编程
位置:首页>> 网络编程>> Python编程>> Python使用正则表达式抓取网页图片的方法示例

Python使用正则表达式抓取网页图片的方法示例

作者:我要的shine  发布时间:2022-11-29 04:11:35 

标签:Python,正则表达式,网页图片

本文实例讲述了Python使用正则表达式抓取网页图片的方法。分享给大家供大家参考,具体如下:


#!/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)" alt'
 imgre = re.compile(reg)
 imglist = re.findall(imgre,html)
 x = 0
 for imgurl in imglist:
   urllib.urlretrieve(imgurl,'%s.jpg' % x)
   x+=1
html = getHtml("http://photo.bitauto.com/?WT.mc_id=360tpdq")
print getImg(html)

PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:

JavaScript正则表达式在线测试工具:
http://tools.jb51.net/regex/javascript

正则表达式在线生成工具:
http://tools.jb51.net/regex/create_reg

希望本文所述对大家Python程序设计有所帮助。

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com