문제

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?

도움이 되었습니까?

해결책

Based on the example here:

def OnWaveletSelfAdded(event, wavelet):
  for id in wavelet.blips:
    blip = wavelet.blips[id]
    logging.debug(blip.text)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top