Python Forum
Apache Module - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Apache Module (/thread-41498.html)



Apache Module - jfha73 - Jan-25-2024

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.


RE: Apache Module - Larz60+ - Jan-26-2024

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


RE: Apache Module - noisefloor - Jan-26-2024

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