【发布时间】:2021-03-03 18:32:40
【问题描述】:
现在卡在这个问题上几个小时了。我有一个可以用 python 编辑的模板。这个想法是复制,编辑,转换,下载然后从驱动器中删除文件,只留下空模板。我已经阅读了文档并尝试了不同的方法,但我无法弄清楚。
编辑: 到目前为止我的代码
SCOPES = ['https://www.googleapis.com/auth/drive']
DOCUMENT_ID = '1ZgaYCra-7m_oWIBWK9RoMssYNTAsQLa1ELI1vyBB73c'
def main():
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'credentials.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('docs', 'v1', credentials=creds)
text1 = 'test'
requests1 = [
{
'insertText': {
'location': {
'index': 110,
},
'text': text1
}
},
{
'insertText': {
'location': {
'index': 98,
},
'text': text1
}
},
{
'insertText': {
'location': {
'index': 83,
},
'text': text1
}
},
{
'insertText': {
'location': {
'index': 72,
},
'text': text1
}
},
{
'insertText': {
'location': {
'index': 49,
},
'text': text1
}
},
]
result = service.documents().batchUpdate(
documentId=DOCUMENT_ID, body={'requests': requests1}).execute()
如果 name == 'main': 主要()
【问题讨论】:
标签: python pdf google-drive-api google-docs google-docs-api