码迷,mamicode.com
首页 > 其他好文 > 详细

简单爬取一张图片

时间:2019-11-03 11:08:01      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:users   图片   with   weight   img   urlopen   with open   urllib   alt   

# crawl a image

import urllib.request


response = urllib.request.urlopen("http://placekitten.com/200/300") #load html
with open("C:/Users/Mike1/Desktop/mykitten.jpg","wb") as f: # open a file 
    f.write(response.read()) # write byte

 

技术图片

 


简单爬取一张图片

标签:users   图片   with   weight   img   urlopen   with open   urllib   alt   

原文地址:https://www.cnblogs.com/zijidefengge/p/11785256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!