誰かが書き込むたびにRobotが末尾に「www」を勝手に書き足していく。 #/usr/bin/env python # -*- coding: utf-8 -*- from waveapi import events from waveapi import robot def blipSubmitted(properties, context): blip = context.GetBlipById(properties['blipId']) text = blip.GetDocument().GetText() blip.GetDocument().InsertText(len(text) - 1, u'www') if __name__ == '__main__': sugyan_robot = robot.Robot( 'sugyan_robot', 1.0, image_url =
