10

我想要的程序的流程是:

  1. 将 xlsx 电子表格上传到驱动器(它是使用 pandas 创建的to_excel
  2. 将其转换为 Google 表格格式
  3. 指定任何知道链接的人都可以编辑它
  4. 获取链接并与将输入信息的人分享
  5. 下载完成的表格

我目前正在使用 PyDrive,它解决了第 1 步和第 5 步,但还有一些未解决的问题。

如何转换为谷歌表格格式?我试图在'application/vnd.google-apps.spreadsheet'创建要使用 PyDrive 上传的文件时指定 mimeType,但这给了我一个错误。

如何将文件设置为任何知道链接的人都可以编辑?一旦设置好,我就可以使用 PyDrive 轻松获得共享链接。

更新:从 xlsx 到 google 表格的转换很容易使用convert=True标志。见下文。我仍在寻找一种方法来将我的新文件的共享设置设置为“任何知道链接的人都可以编辑”。

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive

gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)

test_file = drive.CreateFile({'title': 'testfile.xlsx'})
test_file.SetContentFile('testfile.xlsx')
test_file.Upload({'convert': True})
4

2 回答 2

3

对于“INSERT”和“COPY”方法,都有一个“convert”的可选查询参数;

convert=true,

是否将此文件转换为相应的 Google Docs 格式。(默认:假)

这里有一个python示例:

谷歌文档 - 复制

您需要使用 Python 客户端库才能使代码正常工作。

from apiclient import errors
from apiclient.http import MediaFileUpload
# ...

def insert_file(service, title, description, parent_id, mime_type, filename):
  """Insert new file.

  Args:
    service: Drive API service instance.
    title: Title of the file to insert, including the extension.
    description: Description of the file to insert.
    parent_id: Parent folder's ID.
    mime_type: MIME type of the file to insert.
    filename: Filename of the file to insert.
  Returns:
    Inserted file metadata if successful, None otherwise.
  """
  media_body = MediaFileUpload(filename, mimetype=mime_type, resumable=True)
  body = {
    'title': title,
    'description': description,
    'mimeType': mime_type
  }
  # Set the parent folder.
  if parent_id:
    body['parents'] = [{'id': parent_id}]

  try:
    file = service.files().insert(
        body=body,
        convert=true,
        media_body=media_body).execute()

    # Uncomment the following line to print the File ID
    # print 'File ID: %s' % file['id']

    return file
  except errors.HttpError, error:
    print 'An error occured: %s' % error
    return None

这个我没试过,所以你需要测试一下。

于 2015-02-27T03:09:58.633 回答
3

为了将文件设置为对任何拥有该链接的人都是可编辑的,您必须插入具有以下信息的新权限:

from apiclient import errors
# ...

def share_with_anyone(service, file_id):
  """Shares the file with anyone with the link

  Args:
    service: Drive API service instance.
    file_id: ID of the file to insert permission for.

  Returns:
    The inserted permission if successful, None otherwise.
  """
  new_permission = {
      'type': "anyone",
      'role': "writer",
      'withLink': True
  }
  try:
    return service.permissions().insert(
        fileId=file_id, body=new_permission).execute()
  except errors.HttpError, error:
    print 'An error occurred: %s' % error
  return None

然后得到你去的链接:文件[“alternateLink”]

于 2015-04-30T18:40:03.523 回答