python-下载网页链接

 

from urllib.request import urlretrieve

url = 'http://images.jupiterimages.com/common/detail/27/68/22986827.jpg'
urlretrieve(url.strip(), './folder1/%s' % (url.strip().split('/')[-1]))

  

 

strip() 是为了去除字符串头尾的空格

 

posted @ 2018-09-10 10:22  路边的十元钱硬币  阅读(148)  评论(0编辑  收藏  举报