Set quot;publish to webquot; in Google spreadsheet using Drive python API(设置“发布到网络在 Google 电子表格中使用 Drive python API)
问题描述
我正在尝试使用 Python 版本的 Google Drive API 在 Google 文档中模拟单击发布到网络"->立即开始发布".根据我对文档的模糊理解,我相信这应该可行:
I'm trying to simulate clicking "publish to web" -> "start publishing now" in Google docs using the Python version of the Google Drive API. Based on my vague understanding of the documentation, I believe this should work:
service.revisions().update(fileId = newfile['id'],
revisionId='head', body={'published':True, 'publishAuto': True})
但是,这似乎对我的文档没有影响.
However, this appears to have no effect on my document.
我希望能够以编程方式创建一个可供全世界立即访问的 Google 电子表格.
I'd like to be able to programmatically create a Google spreadsheet that is immediately world-accessible.
推荐答案
原来上面代码片段返回的响应对象需要调用execute()
:
Turns out the response object that's returned by the code snippet above needs to call execute()
:
service.revisions().update(fileId = newfile['id'], revisionId='head',
body={'published':True, 'publishAuto': True}).execute()
这会返回一个修订对象并设置文档的发布属性.
This returns a revision object and sets the publish properties on the document.
这篇关于设置“发布到网络"在 Google 电子表格中使用 Drive python API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:设置“发布到网络"在 Google 电子表格中使用
基础教程推荐
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01