2

我正在尝试编写一个脚本,该脚本将自动更新通过 Google 协作平台创建和管理的网站上的一些附件。这应该是可能的,因为谷歌在 9 月发布了Sites API并且Python GData API声称支持站点。但是,我能找到的最接近的方法称为client.update,它允许我更新附件的元数据,但不能更新内容。

在 Java API 中,更新附件是通过创建一个新附件MediaFileSource然后调用entry.setMediaFileSource(source). entry.updateMedia()但是,我在 Python API 中找不到类似的东西。我是愚蠢的,只是错过了一些东西,还是真的不可能使用 python API 更新谷歌网站的附件?

4

4 回答 4

4

此处的文档提供了有关如何更新附件的内容和元数据的示例(替换附件的内容和元数据小节)

唯一遗漏的是existing_attachment通过以下方式轻松完成的操作:

existing_attachment = None
uri = '%s?kind=%s' % (client.MakeContentFeedUri(), 'attachment')
feed = client.GetContentFeed(uri=uri)
for entry in feed.entry:
  if entry.title.text == title:
    print '%s [%s]' % (entry.title.text, entry.Kind())
    existing_attachment = entry
于 2012-11-07T00:09:43.503 回答
2

站点 api 已更新到 v1.1;这可能是一个新的补充

http://code.google.com/apis/sites/docs/1.0/developers_guide_python.html#UpdatingContent

于 2010-01-28T06:41:35.587 回答
1

好吧,那里的API很奇怪,文档也不是很清楚。这是我想出来的。第一次上传附件时,通过 UploadAttachment 方法完成,但在后续尝试时,您需要调用 Update。这是执行此操作的代码:

class AttachmentUploader(object):
  """Uploads a given attachment to a given filecabinet in Google Sites."""

  def __init__(self, site, username, password):
    self.client = gdata.sites.client.SitesClient(
        source="uploaderScript", site=site)
    self.client.ssl = True
    try:
      self.client.ClientLogin(username, password, "some.key")
    except:
      traceback.print_exc()
      raise

  def FindAttachment(self, title):
    uri = "%s?kind=%s" % (self.client.MakeContentFeedUri(), "attachment")
    feed = self.client.GetContentFeed(uri=uri)
    for entry in feed.entry:
      if entry.title.text == title:
        return entry
    return None

  def FindCabinet(self, title):
    uri = "%s?kind=%s" % (self.client.MakeContentFeedUri(), "filecabinet")
    feed = self.client.GetContentFeed(uri=uri)
    for entry in feed.entry:
      if entry.title.text == title:
        return entry
    return None

  def Upload(self, cabinet_title, title, file_path, description):
    """Upload the given file as attachment."""
    ms = gdata.data.MediaSource(file_path=file_path, content_type="text/ascii")

    existing_attachment = self.FindAttachment(title)
    if existing_attachment is not None:
      existing_attachment.summary.text = description
      updated = self.client.Update(existing_attachment, media_source=ms)
      print "Updated: ", updated.GetAlternateLink().href
    else:
      cabinet = self.FindCabinet(cabinet_title)
      if cabinet is None:
        print "OUCH: cabinet %s does not exist" % cabinet_title
        return
      attachment = self.client.UploadAttachment(
          ms, cabinet, title=title, description=description)
      print "Uploaded: ", attachment.GetAlternateLink().href
于 2010-03-11T12:08:03.730 回答
0

有一个upload_attachment方法,应该可以工作。您可能还想查看 Sites API 的示例代码,它使用该方法。

于 2010-01-04T19:50:53.083 回答