为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 google docs api (Python) 更新 google doc

如何使用 google docs api (Python) 更新 google doc

蛊毒传说 2021-12-17 16:07:08
我是 Google Docs api 的新手,希望能够使用 replaceText 选项添加文本。我该如何设置?我在 Python 3.6 中这样做
查看完整描述

1 回答

?
宝慕林4294392

TA贡献2021条经验 获得超8个赞

只需按照使用 Python 的Google Docs API快速入门中的步骤操作即可。然后尝试运行此代码以使用InsertTextRequest方法插入文本:


requests = [

     {

        'insertText': {

            'location': {

                'index': 25,

            },

            'text': text1

        }

    },

             {

        'insertText': {

            'location': {

                'index': 50,

            },

            'text': text2

        }

    },

             {

        'insertText': {

            'location': {

                'index': 75,

            },

            'text': text3

        }

    },

]


result = service.documents().batchUpdate(

    documentId=DOCUMENT_ID, body={'requests': requests}).execute()

要将文本插入到文档中,请使用该BatchUpdate方法并将InsertTextRequest文本和位置包含为有效负载。最好在文档中使用这种建议的方法。


查看完整回答
反对 回复 2021-12-17
  • 1 回答
  • 0 关注
  • 209 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信