说明:仅为测试下载图片、正则表达式
测试url为钢铁侠贴吧的一个介绍mark各代盔甲帖子
以下代码将第一页的图片全部下载到本程序根目录
#!/usr/bin/env python
#! -*- coding: utf-8 -*-
import urllib,urllib2
import re
#返回网页源代码
def getHtml(url):
html = urllib2.urlopen(url)
srcCode = html.read()
return srcCode
def getImg(srcCode):
#通过分析网页中的图片地址,对其片建立正则
pattern = re.compile(r‘src="(.*?\.jpg)".*?pic_ext="jpeg"‘)
#图片完整路径存储为list
imgSrc = pattern.findall(srcCode)
num = 0
for i in imgSrc:
urllib.urlretrieve(i,‘%s.jpg‘ % num)
num += 1
print "正则下载"
print i
print ‘全部任务完成!‘
myUrl = ‘http://tieba.baidu.com/p/3698756921?see_lz=1&pn=1‘
getImg(getHtml(myUrl))
原文地址:http://blog.csdn.net/songyu0120/article/details/45219457