小编典典

Python:使用网址从Google驱动器下载文件

python

我正在尝试从Google驱动器下载文件,我所拥有的只是驱动器的URL。

我已经阅读了有关APIdrive_service和的google API MedioIO,其中还需要一些凭据(主要是JSON
file/OAuth)。但是我不知道它是如何工作的。

另外,尝试过urllib2.urlretrieve,但我的情况是从驱动器中获取文件。也尝试wget过,但没有用。

尝试过的PyDrive图书馆。它具有良好的驱动上传功能,但没有下载选项。

任何帮助将不胜感激。谢谢。


阅读 199

收藏
2020-12-20

共1个答案

小编典典

如果用“驱动器的网址”表示Google云端硬盘上文件的 可共享链接 ,则以下内容可能会有所帮助:

import requests

def download_file_from_google_drive(id, destination):
    URL = "https://docs.google.com/uc?export=download"

    session = requests.Session()

    response = session.get(URL, params = { 'id' : id }, stream = True)
    token = get_confirm_token(response)

    if token:
        params = { 'id' : id, 'confirm' : token }
        response = session.get(URL, params = params, stream = True)

    save_response_content(response, destination)

def get_confirm_token(response):
    for key, value in response.cookies.items():
        if key.startswith('download_warning'):
            return value

    return None

def save_response_content(response, destination):
    CHUNK_SIZE = 32768

    with open(destination, "wb") as f:
        for chunk in response.iter_content(CHUNK_SIZE):
            if chunk: # filter out keep-alive new chunks
                f.write(chunk)

if __name__ == "__main__":
    file_id = 'TAKE ID FROM SHAREABLE LINK'
    destination = 'DESTINATION FILE ON YOUR DISK'
    download_file_from_google_drive(file_id, destination)

不过 ,该 片段 不使用 pydrive ,也不使用Google Drive SDK。它使用了请求模块(某种程度上是 urllib2 的替代)。

2020-12-20