3

我想使用 Google Apps Engine (python) 将文档、文件上传到谷歌文档

任何代码或链接将不胜感激

4

2 回答 2

3

请参阅文档,但您可以尝试以下操作:

ms = gdata.MediaSource(file_path='/path/to/your/test.doc',  content_type=gdata.docs.service.SUPPORTED_FILETYPES['DOC'])
entry = gd_client.Upload(ms, 'MyDocTitle')
print 'Document now accessible online at:', entry.GetAlternateLink().href
于 2010-06-21T07:36:32.583 回答
1

解决方案是文件上传,您需要在 python 中使用以下行读取数据:

读取文件大小的函数

def getSize(self,fileobject):
  fileobject.seek(0,2) # move the cursor to the end of the file
  size = fileobject.tell()
  return size



f = self.request.POST.get('fname').file

media = gdata.data.MediaSource(file_handle=f.read(), content_type=gdata.docs.service.SUPPORTED_FILETYPES[ext], content_length=self.getSize(self.request.POST.get('fname').file))

并且还需要修改谷歌的gdata python库来实现:

客户端.py:

在 def 上传文件

代替:

while not entry:
 entry = self.upload_chunk(start_byte, self.file_handle.read(self.chunk_size))
 start_byte += self.chunk_size

和:

while not entry:
  entry = self.upload_chunk(start_byte, self.file_handle)
  start_byte += self.chunk_size

你可以上传文件目录到谷歌文档

于 2013-06-04T10:41:12.620 回答