12

I'm building an application using Google app engine with python, and I'm stuck with making sessions. Is there any app that already does that for app engine? Thank you.

Paulo Barros
  • 2,740
  • 8
  • 28
  • 36
  • 1
    You can now use webapp2 sessions, see [this post](http://stackoverflow.com/questions/12737008/google-app-engine-getting-sessions-working-with-python-2-7) – Ailete619 Jan 22 '14 at 14:05

1 Answers1

20

I recommend gae-sessions. The source includes demos which show how to use it, including how to integrate with the Users API or RPX/JanRain.

Disclaimer: I wrote gae-sessions, but for an informative comparison of it with alternatives, read this article.

David Underhill
  • 15,896
  • 7
  • 53
  • 61
  • David, if it ever became possible it would be wonderful to see [itsdangerous](http://pythonhosted.org/itsdangerous/) added to the comparison chart with gae-sessions. – Brian M. Hunt May 03 '13 at 17:01