what is best for web development??

Remi Delon remi at cherrypy.org
Mon Jan 12 16:50:26 EST 2004


> i am developing an issue tracking system 
> the primary requirements are
> 1)it should be platform independent which i think python will take 
> care of
> 2)it should have customizeable gui .I am thinking of using templates 
> for this like Cheetah. Is there any other better solution to Cheetah?
> The problem i am facing here is i dont know what to use for 
> development of the application. I came across many ways to develop 
> web application in python which I already specified like 
> i)the cgi module in python
> ii)Python Server Pages
> iii)Quixote
> iv)WebWare
> v)Zope etc.
> I want to choose such an environment so that i dont have to install 
> other softwares to run my application.For eg. I think if I develop 
> using zope then the client also has to install zope to run my 
> software and i dont want this.

If you want something that meets your requirement and is very easy to
deploy, you can try CherryPy ...
It will generate a single executable containing everything that's needed to
run the site (including its own HTTP server).
Then all you need to install on the deployment machine is Python.
Actually, you can also freeze the script generated by CherryPy (with py2exe
for instance) and then Python isn't even required anymore ...


Remi.     remi at remove-me.python-hosting.com

----------------------
Specialized python hosting: http://www.python-hosting.com
CherryPy: http://www.cherrypy.org
Free CherryPy hosting: http://www.freecherrypy.org
----------------------



More information about the Python-list mailing list