[google-appengine] Re: Accessing gmail's atom feed using the google accounts API google.appengine.api.users

2010-03-22 Thread romuwild
xoopit? On Mar 22, 4:24 am, Tom Wu wrote: > xoopit > > 2010/3/22 romuwild > > > > > is there any way to let a user sign in using the google account API > > and then access its gmail atom feed without any relogin? > > > thanks! > > > -- > > Y

[google-appengine] Accessing gmail's atom feed using the google accounts API google.appengine.api.users

2010-03-21 Thread romuwild
is there any way to let a user sign in using the google account API and then access its gmail atom feed without any relogin? thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@goog

[google-appengine] Re: reading 1k entities needs 2 seconds

2010-01-25 Thread romuwild
yeah i thought the same, but fetching 1k entities that way stills takes ~2 seconds using following code: def __getItems(user): userKey = __getUserKey(user,True) t0 = time.time() items = db.GqlQuery("SELECT * FROM Item WHERE user = : 1",userKey).fetch(1000) logging.debug('getting items too