Python写爬虫,得到了图片链接,怎样写入文件

2022-08-01 社会 68阅读
img_req=urllib2.Request(Img_URL)
img_response=opener.open(img_req)
try:
     out=open('code','wb')
     #print img_response.read()
     out.write(img_response.read())
     out.flush()
     out.close()
     print 'get code success'
except IOError:
     print 'file wrong'
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com