I am working with google app engine and python.
I have a model with Items.
Immediately after I insert an item with item.put()
I want to get it's key and redirect to a page using this key
something like,
redirectUrl = "/view/key/%s/" % item.key
self.redirect(redirectUrl)