标签:指定 out ESS blog 地址 img http code one
urllib 可以用来打开各种协议的URL,常用方法如下:
urllib.urlretrieve(url, filename=None):用于下载URL链接对应的内容,如下,下载一张图片
In [1]: import urllib In [2]: url = ‘https://img2018.cnblogs.com/blog/899389/201901/899389-20190130165326464-1412976384.png‘ # 图片地址 In [3]: urllib.urlretrieve(url) # 默认下载到/tmp目录下并随机命名 Out[3]: (‘/tmp/tmpda570C.png‘, <httplib.HTTPMessage instance at 0x21a1560>) In [4]: urllib.urlretrieve(url, filename=‘/tmp/1.png‘) Out[4]: (‘/tmp/1.png‘, <httplib.HTTPMessage instance at 0x2099ab8>) # filename参数可以指定下载后的文件名
标签:指定 out ESS blog 地址 img http code one
原文地址:https://www.cnblogs.com/pzk7788/p/10372431.html