使用GSpread在文件夹中创建电子表格

时间:2019-08-22 09:58:30

标签: python google-api gspread

我无法找到有关如何使用GSpread在某个Google云端硬盘目录中创建GSheet的任何文档。

我检查了文档,并浏览了一些后端代码。

我当前正在使用以下代码创建电子表格:

worksheet = sh.add_worksheet(title='Overview', rows='100', cols='9')

我希望能够在Google驱动器上的目录中创建电子表格,例如:

X> Y>电子表格

任何帮助将不胜感激,

干杯。

1 个答案:

答案 0 :(得分:2)

  • 您要在特定文件夹中创建新的电子表格。
  • 您想使用Python来实现。

如果我的理解正确,那么这个答案如何?

修改点:

  • 很遗憾,Sheets API无法实现此目的。在这种情况下,需要使用Drive API。
  • 在您的脚本中,我认为您像gspread.authorize()一样使用gc = gspread.authorize(credentials)。在此修改中,使用credentials
  • 问题worksheet = sh.add_worksheet(title='Overview', rows='100', cols='9')中的脚本用于将工作表添加到现有电子表格中。使用gspread创建新的电子表格时,请使用sh = gc.create('A new spreadsheet')
    • 在这种情况下,新的电子表格将创建到根文件夹中。

准备工作:

在使用以下脚本之前,请在API控制台上启用Drive API,并添加https://www.googleapis.com/auth/drive的范围。如果您使用的是https://www.googleapis.com/auth/drive.file的范围,请使用此范围,并且不需要将范围修改为https://www.googleapis.com/auth/drive

  • 如果您使用的是OAuth2,请删除包含刷新令牌的文件。然后,请运行脚本并再次重新授权。这样,添加的范围就会反映到访问令牌中。

  • 如果您使用服务帐户,则不需要删除该文件。

模式1:

以下示例脚本将新的电子表格创建到特定文件夹。

示例脚本:

from apiclient import discovery

destFolderId = '###'  # Please set the destination folder ID.
title = '###'  # Please set the Spreadsheet name.

drive_service = discovery.build('drive', 'v3', credentials=credentials)  # Use "credentials" of "gspread.authorize(credentials)".
file_metadata = {
    'name': title,
    'mimeType': 'application/vnd.google-apps.spreadsheet',
    'parents': [destFolderId]
}
file = drive_service.files().create(body=file_metadata).execute()
print(file)

模式2:

如果要将现有电子表格移动到特定文件夹,请使用以下脚本。

示例脚本:

from apiclient import discovery

spreadsheetId = '###'  # Please set the Spreadsheet ID.
destFolderId = '###'  # Please set the destination folder ID.

drive_service = discovery.build('drive', 'v3', credentials=credentials)  # Use "credentials" of "gspread.authorize(credentials)".
# Retrieve the existing parents to remove
file = drive_service.files().get(fileId=spreadsheetId,
                                 fields='parents').execute()
previous_parents = ",".join(file.get('parents'))
# Move the file to the new folder
file = drive_service.files().update(fileId=spreadsheetId,
                                    addParents=destFolderId,
                                    removeParents=previous_parents,
                                    fields='id, parents').execute()

参考:

如果我误解了您的问题,而这不是您想要的方向,我深表歉意。

编辑:

要共享文件夹时,请使用以下脚本。

示例脚本:

drive_service = discovery.build('drive', 'v3', credentials=credentials)  # Use "credentials" of "gspread.authorize(credentials)".
folderId = "###"  # Please set the folder ID.
permission = {
    'type': 'user',
    'role': 'writer',
    'emailAddress': '###',  # Please set the email address of the user that you want to share.
}
res = drive_service.permissions().create(fileId=folderId, body=permission).execute()
print(res)

参考: