是否可以在Cloud Datalab中使用Google apiclient的发现模块



我有一个简单的python脚本可以做这样的事情:

from apiclient import discovery
from oauth2client.client import GoogleCredentials
ggSvc = discovery.build ( 'genomics', 'v1', credentials=credentials )
body = { "readGroupSetIds": [readGroupSetId],
         "referenceName": args.chr,
         "start": args.pos-2,
         "end": args.pos+2,
         "pageSize": 256 }
r = ggSvc.reads().search ( body=body ).execute()

是否可以从 Datalab 执行此操作,或者我的最佳选择是使用请求模块,然后以这种方式构建和发布 HTTP 请求?

以下命令

将安装谷歌 api python 客户端
!pip install google-api-python-client

您还可以使用%%bash单元格魔术选项运行命令。

例如

%%bash
pip install google-api-python-client

相关内容

  • 没有找到相关文章

最新更新