Day 7
写了个爬虫 呵呵呵
能用啊
代码
#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)
这样只需要修改网址和 修改加粗部分其中后面那个pic_ext 是看网页的位置。
通过爬虫来学习 Python 有什么看什么
http://www.tuicool.com/articles/6NVjAjr 进阶版下载