0

第一点:我有一个问题,是否可以使用 Google Drive API 从我的驱动器下载 pdf 文件作为 doc 或任何其他格式?就像我们可以在驱动器上手动操作一样:打开一个 pdf 文件作为 google 文档并下载它。

编辑:第二点:我做了什么:通过快速启动连接到 apidrive。我打开了 Drive API(Step1),并安装了 Google Client Library(step2)。之后,我尝试使用以下代码将文件从我的 HD 上传到我的驱动器:

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive

#1st authentification
gauth = GoogleAuth()
gauth.LocalWebserverAuth() # Creates local webserver and auto handles 
authentication.
drive = GoogleDrive(gauth)

file1 = drive.CreateFile()
file1.SetContentFile('documt.pdf')
file1.Upload()

我计划的下一步是以不同的格式(例如 .doc)下载我刚刚上传到 drive 的“documt.pdf”。所以我搜索了如何做所以,我找到了以下脚本,即使它没有做我真正想要的(如文档所说),它也只能将 Google 文档下载为 pdf(与我想要的相反) :

file_id = '1ZdR3L3qP4Bkq8noWLJHSr_iBau0DNT4Kli4SxNc2YEo'
request = drive_service.files().export_media(fileId=file_id,
                                         mimeType='application/pdf')
fh = io.BytesIO()
downloader = MediaIoBaseDownload(fh, request)
done = False
while done is False:
status, done = downloader.next_chunk()
print "Download %d%%." % int(status.progress() * 100)

但是,即使此代码也显示错误:

Traceback (most recent call last):
File "C:\Users\OU\AppData\Local\Programs\Python\Python36-
32\download_from_drive.py", line 10, in <module>
request = drive_service.files().export_media(fileId=file_id,
NameError: name 'drive_service' is not defined

我的 client_secrets 文件看起来像(不知道它是否与问题有关): {"web":{"client_id":"xxxxx.apps.googleusercontent.com","project_id":"xxxx"," auth_uri":" https://accounts.google.com/o/oauth2/auth ","token_uri":" https://accounts.google.com/x/oauth2/token ","auth_provider_x509_cert_url":" https: //www.googleapis.com/oauth2/v1/c ","client_secret":"erm-xxxx","re​​direct_uris":[" http://localhost:8080/ "],"javascript_origins":[" http: //localhost:8080 "]}}

谁能帮我找到我的问题的答案(第一点),并解决错误(第二点)?

非常感谢您

4

2 回答 2

0

最后,我已经回答了我的问题。对于第一点:不允许将 pdf 作为另一种格式下载。application/vnd.google-apps.document但是,即使是 pdf,我们也可以首先使用 google docs 格式上传文件。我会工作得很好。

第二点:因为第一点问题现在已经解决了,我不需要修复错误。因为我想要的效果非常好。

于 2017-10-09T15:24:03.857 回答
0

我认为您的脚本运行良好。但是从错误来看NameError: name 'drive_service' is not defined,我认为您可以使用Drive API 的 Quickstart。您的问题片段可用作快速入门的一部分。您的错误是service = discovery.build('drive', 'v3', http=http)快速入门。在您的情况下,变量 ofdrive_service位于serviceQuickstart 中。因此,使用您的代码片段的流程如下。

  1. 执行快速入门的第 1 步和第 2 步。
  2. 对于第 3 步,修改service = discovery.build('drive', 'v3', http=http)drive_service = discovery.build('drive', 'v3', http=http).
  3. drive_service = discovery.build('drive', 'v3', http=http)将下面的脚本替换main()为您的代码段。执行此操作时,请注意脚本的缩进。
于 2017-10-05T22:16:10.840 回答