python爬取图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python爬取图片相关的知识,希望对你有一定的参考价值。

#coding=utf-8  
  
import urllib2  
import os  
import re 
count=0#计数君
for line in open("./imagenet1.synset.geturls"):
    imagename=str(count+1)
    print(imagename)
    try:
        url=urllib2.urlopen(line)
        data=url.read()  
        with open("/opt/fish/"+imagename+".jpg", "wb") as code: 
            count+=1 
            code.write(data)  
            code.close()
    except Exception as e:
        print(e)
        continue
        raise e
    else:
        pass
    

 

以上是关于python爬取图片的主要内容,如果未能解决你的问题,请参考以下文章

Python如何爬取百度图片?

scrapy主动退出爬虫的代码片段(python3)

python爬取MM图片

python爬取百度图片代码

python小白学习记录 多线程爬取ts片段

想用python爬取网页上的图片,但无法用select()方法定位图片的源地址?