python爬取贴吧上的图片
第一个爬虫的程序参考链接:https://www.cnblogs.com/fnng/p/3576154.html下面是我稍加改动后的代码,试了好几个都成功了#coding=utf-8import urllib.requestimport redef getHtml(url):page = urllib.request.urlopen(url)html = page.read()#读取url上的数据
·
第一个爬虫的程序
参考链接:https://www.cnblogs.com/fnng/p/3576154.html
下面是我稍加改动后的代码,试了好几个都成功了
#coding=utf-8
import urllib.request
import re
def getHtml(url):
page = urllib.request.urlopen(url)
html = page.read() #读取url上的数据,并把整个页面下载下来
return html
def getImg(html):
reg = r'class="BDE_Image" src="(.+?\.jpg)"'
imgre = re.compile(reg)
imglist = re.findall(imgre,html.decode('utf-8'))
x=0
for imgurl in imglist:
urllib.request.urlretrieve(imgurl, '%s.jpg' %x)
x+= 1
return imglist
html = getHtml("http://tieba.baidu.com/p/6565885468")
print(getImg(html))
print(html)
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献6条内容
所有评论(0)