从Google Colaboratory访问Google Team Drive中的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Google Colaboratory访问Google Team Drive中的数据相关的知识,希望对你有一定的参考价值。

有没有办法从Google Team Drive访问我的数据?我使用了提供的代码,但只能访问我的普通驱动器,而不能访问Team Drive:

!apt-get install -y -qq software-properties-common python-software-properties module-init-tools
!add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null
!apt-get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfuse fuse
from google.colab import auth
auth.authenticate_user()
from oauth2client.client import GoogleCredentials
creds = GoogleCredentials.get_application_default()
import getpass
!google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL
vcode = getpass.getpass()
!echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}

我感谢每一个帮助!

答案

您可以将REST API用于manage your Team Drive。检查这个documentation。以下是此资源的methods列表:

  • 创建 创建一个新的Team Drive。
  • 删除 永久删除用户为其组织者的团队驱动器。 Team Drive不能包含任何未处理的项目。
  • 得到 按ID获取Team Drive的元数据。
  • 名单 列出用户的团队驱动器。
  • 更新 更新Team Drive的元数据

以上是关于从Google Colaboratory访问Google Team Drive中的数据的主要内容,如果未能解决你的问题,请参考以下文章

无法从 google-colaboratory 打开 google-storage 中的文件

使用本地 GPU 的 Google Colaboratory 本地运行时

谷歌colaboratory和谷歌云之间的接口

将数据导入 Google Colaboratory

Google Colab 笔记:介绍篇

在存储在谷歌驱动器中的谷歌 Colaboratory 中导入 zip 文件