第一点:我有一个问题,是否可以使用 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","redirect_uris":[" http://localhost:8080/ "],"javascript_origins":[" http: //localhost:8080 "]}}
谁能帮我找到我的问题的答案(第一点),并解决错误(第二点)?
非常感谢您