Python Forum

Full Version: Apache Module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

I currently have Apache running Python via CGI, but has anybody started to work on a module that allows Python to tun web pages? sort of what ASP, PHP and JSP do?

Thanks.
you might want to look here: https://pypi.org/search/?q=web
Hallo,

> I currently have Apache running Python via CGI,
Really? CGI is pretty much outdated and hardly used since WSGI and the rise of WSGI-Frameworks, which started approx. 10 years ago. The CGI module is depricated and will be removed with the release of Python 3.13 (=very soon).

The most popular / widely used frameworks for Python are Django and Flask, but there are plenty more.

Regards, noisefloor