Multiple sessions? No, since the Django sessions framework is
implemented via a single cookie on the client side.
Multiple cookies, however, is easy. Just set the cookie details in the
HttpReponse yourself, giving them whatever names and expiry times you
like. See the django.contrib.sessions.* code for an example of how to do
this if you like.
Hmm ... just occurred to me: you could combine both solutions. Implement
the whole multiple cookies stuff and make it into a session backend.
Django supports custom / third-party session backends (it's pluggable),
so once you get this working by hand, you could make it work
transparently via the session mechanism with a bit of extra work.
Regards,
Malcolm