Re: How to inplement Session in CGI

2006-03-28 Thread bruno at modulix
Sullivan WxPyQtKinter wrote: > bruno at modulix 写道: > > >>Sullivan WxPyQtKinter wrote: >> >>>Python disappointly failed to provide a convinient cgi session >>>management module. >> >>Probably because there are much better options for web programming in >>Python ? >> > > Really? Then what is it?

Re: How to inplement Session in CGI

2006-03-28 Thread Sullivan WxPyQtKinter
bruno at modulix 写道: > Sullivan WxPyQtKinter wrote: > > Python disappointly failed to provide a convinient cgi session > > management module. > > Probably because there are much better options for web programming in > Python ? > Really? Then what is it? -- http://mail.python.org/mailman/listin

Re: How to inplement Session in CGI

2006-03-28 Thread Peter Hansen
Sullivan WxPyQtKinter wrote: > Python disappointly failed to provide a convinient cgi session > management module. Not willing to use external modules, I would like to > implement a simplest Session object on my own. > > The basic problem is: how could a python CGI program understand several > req

Re: How to inplement Session in CGI

2006-03-28 Thread Piet van Oostrum
> "Sullivan WxPyQtKinter" <[EMAIL PROTECTED]> (SW) wrote: >SW> Python disappointly failed to provide a convinient cgi session >SW> management module. Not willing to use external modules, I would like to >SW> implement a simplest Session object on my own. >SW> The basic problem is: how could a

Re: How to inplement Session in CGI

2006-03-28 Thread bruno at modulix
Sullivan WxPyQtKinter wrote: > Python disappointly failed to provide a convinient cgi session > management module. Probably because there are much better options for web programming in Python ? > Not willing to use external modules, I would like to > implement a simplest Session object on my own

How to inplement Session in CGI

2006-03-27 Thread Sullivan WxPyQtKinter
Python disappointly failed to provide a convinient cgi session management module. Not willing to use external modules, I would like to implement a simplest Session object on my own. The basic problem is: how could a python CGI program understand several requests are in the same session? Definately