pythongoogle-app-enginegoogle-wave

How do I get contents of a Google Wave given the wave id and wavelet id?


I am using the robots api. I have a wave id and wavelet id, and my app's email is added to the wave. How can I simply get the wave (or wavelet's) contents using the python api?


Solution

  • Based on the example here:

    def OnWaveletSelfAdded(event, wavelet):
      for id in wavelet.blips:
        blip = wavelet.blips[id]
        logging.debug(blip.text)