python保存爬取的图片
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python保存爬取的图片相关的知识,希望对你有一定的参考价值。
用爬虫抓取图片的保存
保存图片
request=urllib2.Request(randNumberUrl,data,headers) picture=opener.open(request).read() local=open(‘D:/tmp.png‘,‘wb‘) local.write(picture) local.close()
以上是关于python保存爬取的图片的主要内容,如果未能解决你的问题,请参考以下文章