Lothar
Lothar

Reputation: 13065

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

Performance is not really important.

Upvotes: 2

Views: 710

Answers (2)

pyfunc
pyfunc

Reputation: 66709

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

Upvotes: 1

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798676

Twisted can do it supposedly.

Upvotes: 0

Related Questions