#coding=utf-8
import urllib
import re def getHtml(url):
page = urllib.urlopen(url)
html = page.read()
return html def getImg(html):
reg = r'src="(.+?\.jpg)" pic_ext'
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://tieba.baidu.com/p/2460150866") print getImg(html)
相关文章
- 10-08windows python生成 pyd文件
- 10-08Spring Data REST 远程代码执行漏洞(CVE-2017-8046)分析与复现
- 10-08WebMvc常用注解示例
- 10-08windows anaconda python3.7 import ssl,psycopg2报错
- 10-08编译 python 代码
- 10-08python – * .pyd文件无法加载,但DependancyWalker出现干净,ProcMon显示它已加载
- 10-08python的py文件生成pyd文件,pycharm直接调用pyd文件
- 10-08521灵魂拷问:代码重要还是我重要?
- 10-08【邢不行|量化小讲堂系列35-python量化入门】建议收藏 | Windows下安装TA-Lib终极教程
- 10-08Python pycharm 常用快捷键