On Mar 9, 11:28 am, Massimiliano <[email protected]> wrote: > I just want to take advantages of your knowledge (I'm working with Python > and GAE, less than one month). > > 1) How can I create random id (is there something in python?)?
The standard library has the module 'uuid', which can generate universally-unique identifiers. This is quite possible overkill for session IDs, but it's there. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
