我有很多图片的网站,我想将所有图片上传到谷歌磁盘,你能帮我,我怎样才能将文件从网址下载到谷歌磁盘,而无需下载到我的主机并上传到谷歌磁盘后。
例如yandex disk有这个api但是在谷歌我找不到足够的细节
答案 0 :(得分:1)
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-或者您也可以在没有包装器帮助的情况下运行您的应用程序,谷歌在这里为submit your app详细记录,然后在upload