码迷,mamicode.com
首页 > 编程语言 > 详细

Python 通过下载链接把文件下载到本地

时间:2020-04-04 23:03:38      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:requests   net   文件   通过   odi   err   coding   open   data   

#!/usr/bin/python
#encoding:utf-8

import requests

url = https://climate.northwestknowledge.net/TERRACLIMATE-DATA/TerraClimate_vpd_ + str(year) + .nc

file = "E:/PostDoc/Data/TEM/TerraClimate_vpd_" + str(year) + .nc

r = requests.get(url)
with open(file, "wb") as code:
    code.write(r.content)

 

Python 通过下载链接把文件下载到本地

标签:requests   net   文件   通过   odi   err   coding   open   data   

原文地址:https://www.cnblogs.com/ymsong/p/12634430.html

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