【python】下载网络文件到本地

# 下载网络图片文件到本地
import urllib.request

rsp=urllib.request.urlopen("http://n.sinaimg.cn/ent/transform/w630h933/20171222/o111-fypvuqf1838418.jpg")
img=rsp.read()
with open('1.jpg','wb') as f:
    f.write(img)

 

posted @ 2018-03-29 13:34  逆火狂飙  阅读(523)  评论(0编辑  收藏  举报
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东