views:

30

answers:

2

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 standalone server which is not totally connected to a certain framework like the Zope Webserver?

Performance is not really important.

A: 

Twisted can do it supposedly.

Ignacio Vazquez-Abrams
+1  A: 

You can look into following along with twisted mentioned below, which also has fastcgi support.

pyfunc
This are all adapters for webservers but the highest priority is the webserver itself being in python because i need to hack the webserver, all with experimental stuff which is to complicated for writting a lightppd/apache module.
Lothar