Hi
I'd like to get suggestions on the best way to serve python scripts up as web pages. Typically I'd like a way for me and my colleagues to write simple web pages with minimal effort ie we focus on the business logic eg creating simple forms etc. Possibly with some way to manage sessions but this is a nice-to-have. It doesn't have to be WYSIWYG as they are developers but we are busy and don't want to spend long turning an idea into reality. It's for internal use so appearances are not paramount.
The software required to enable this should be easy to setup and configure. eg adding new directories and python lib dirs should be easy.
My first instinct is apache or tomcat with mod_python. Any comments / suggestions welcome. Thanks in advance.
Edit - in googling I stumbled onto jython and tried this in tomcat. It seems to load pages quick but from the command line it takes an age. This might be an alternative. Write the presentation in jython servlets and keep any scripts to be used from the command line or web app separate so they can be run with vanilla python. Plus as a java shop this provides a bridge into our jars. Anyone wish to talk me out of this :-) ?