如何将文件上传到 google 磁盘 api
How to upload a file to google disk api
我有很多图片的网站,我想把所有的图片上传到google磁盘,你能帮我吗,我如何从url下载文件到google磁盘,不下载到我的主机,然后上传到 google 磁盘。
例如 yandex disk 有这个 api 但是在 google 我找不到足够的细节
1- 您可以使用 PyDrive
这是它的工作原理:
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
my_file = #the file you want to be uploaded or sth else
my_file.Upload()
2- 或者您也可以 运行 您的应用程序而无需包装器的帮助,google 此处为 submit your app and then here for upload
对此进行了详细记录
我有很多图片的网站,我想把所有的图片上传到google磁盘,你能帮我吗,我如何从url下载文件到google磁盘,不下载到我的主机,然后上传到 google 磁盘。
例如 yandex disk 有这个 api 但是在 google 我找不到足够的细节
1- 您可以使用 PyDrive
这是它的工作原理:
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
my_file = #the file you want to be uploaded or sth else
my_file.Upload()
2- 或者您也可以 运行 您的应用程序而无需包装器的帮助,google 此处为 submit your app and then here for upload
对此进行了详细记录