HTTP Webserver with FCGI written in Python?
For a project i need a python webserver (can use C modules if necessary). The basic http server from the runtime is way to simple - at least i need FCGI compatibility for some legacy modules.
Is there any other st开发者_StackOverflow社区andalone server which is not totally connected to a certain framework like the Zope Webserver?
Performance is not really important.
You can look into following along with twisted mentioned below, which also has fastcgi support.
- http://trac.saddi.com/flup
- http://fcgi-python.sourceforge.net/
- http://webpy.org/cookbook/fastcgi-lighttpd
- http://www.vitohuang.info/blog/2009/06/12/lighty-with-web-py-via-fastcgi/
Twisted can do it supposedly.
精彩评论