Python baixa dados do Google Drive (Google Cloud Disk)

gdownBasta usar o pacote python .

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