python 下载google drive(谷歌云盘)数据

使用python的gdown package就行。

import gdown

url = "https://drive.google.com/XXX"
output = "./xxx.zip"  # Specify the desired output file name and extension

gdown.download(url, output, quiet=False)

猜你喜欢

转载自blog.csdn.net/weixin_43301333/article/details/132798381
今日推荐