
July 30th, 2004, 01:45 PM
|
 |
Hello World :)
|
|
Join Date: Mar 2003
Location: Hull, UK
|
|
At the moment Pythons cgi module is pretty old and cluttered with depreciated code for backward compatablity. But it works, and is proven stable again and again:
http://www.python.org/doc/2.3.4/lib/module-cgi.html
One alternative would be to use mod_python which now includes working session, cookie and PSP modules. Aswell as offering a nice speed increase over standard CGI.
You can also use the Cookie module to create simple sessions, and this works pretty well:
http://www.python.org/doc/2.3.4/lib/module-Cookie.html
I am also working on an updated version of the cgi module called CGI – based on my earlier Net module:
http://forums.devshed.com/t129666/s.html
Have fun,
Mark.
__________________
programming language development: www.netytan.com – Hula
|