[Google Wave APIs] Re: How do i know wich attributes something has?

2009-11-03 Thread Fabricio Zuardi
Yep, correct, p in your example is an user "email", so modifying your Notify function to take an extra parameter and pass p would do it. The properties object for a WAVELET_PARTICIPANTS_CHANGED event looks like this in Python: {u'blipId': u'b+FkFz5bg3D', u'participantsRemoved': [], u'part

[Google Wave APIs] Re: Hey is there any wave to insert new blip between 2 other blips??

2009-11-03 Thread Fabricio Zuardi
Well, it is possible in Python using blip.CreateChild() :) If you have: --- | blip A --- | blip B --- and want: --- | blip A --- | blip C --- | blip B --- All you need is blip A ID's. It would be something along the lines of: blip = context.GetBlipById(THE_BLIP_ID_OF_A_GOES_HERE) html =

[Google Wave APIs] Can robots tag waves?

2009-10-29 Thread Fabricio Zuardi
Is there currently any methods in the robots API for adding, removing or listing tags? (Python prefferable) Thanks! Fabricio Zuardi http://fabricio.org --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "G

[Google Wave APIs] Re: Importing custom file in Python?

2009-10-28 Thread Fabricio Zuardi
When you say “not on Wave” I assume you meant “not on Appengine”. I am not quite sure appengine supports the * wildcard on imports because of the no-filesystem thing. Have you tried: import money and then: money.something() []s Fabricio http://fabricio.org On Oct 28, 2009, at 4:55 PM, Jo