# 下载网络图片文件到本地 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)
标签:with style 本地 urllib pytho urlopen log request nsf
# 下载网络图片文件到本地 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)
标签:with style 本地 urllib pytho urlopen log request nsf
原文地址:https://www.cnblogs.com/xiandedanteng/p/8669295.html