๐ŸŒ
Python
legacy.python.org โ€บ workshops โ€บ 2002-02 โ€บ papers โ€บ 07 โ€บ index.htm
Mod_Python: Integrating Python with Apache
Mod_python is an Apache module. What makes it different from most other Apache modules is that it itself doesn't do anything, but provide the ability to do what Apache modules written in C do to be done in Python.
๐ŸŒ
HowtoForge
howtoforge.com โ€บ home โ€บ embedding python in apache2 with mod_python (debian etch)
Embedding Python In Apache2 With mod_python (Debian Etch)
This tutorial shows how to install and use mod_python on a Debian Etch server with Apache2. mod_python is an Apache module that embeds the Python interpreter within the server.
๐ŸŒ
PyPI
pypi.org โ€บ project โ€บ mod-wsgi
mod-wsgi ยท PyPI
June 10, 2026 - The mod_wsgi package provides an Apache module that implements a WSGI compliant interface for hosting Python-based web applications on top of the Apache web server, conforming to the WSGI specification (PEP 3333).
      ยป pip install mod-wsgi
    
Published ย  Jun 27, 2026
Version ย  6.0.5
Apache HTTP Server module that integrates the Python programming language with the server
mod_python is an Apache HTTP Server module that integrates the Python programming language with the server. It is intended to provide a Python language binding for the Apache HTTP Server. When mod_python โ€ฆ Wikipedia
Factsheet
Named after Python
Factsheet
Named after Python
๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ Mod_python
mod_python - Wikipedia
March 30, 2021 - mod_python is an Apache HTTP Server module that integrates the Python programming language with the server.
๐ŸŒ
Readthedocs
modwsgi.readthedocs.io
mod_wsgi โ€” mod_wsgi 6.0.5 documentation
mod_wsgi is an Apache module that hosts Python web applications which implement the WSGI specification (PEP 3333).
๐ŸŒ
Stack Overflow
stackoverflow.com โ€บ questions โ€บ 30177866 โ€บ allowing-apache-to-use-locally-installed-python-modules-on-a-server-that-i-don
php - Allowing Apache to use Locally Installed Python Modules, on a Server that I don't have root access - Stack Overflow
When PYTHONPATH is not set, or when the file is not found there, the search continues in an installation-dependent default path; on Unix, this is usually .:/usr/local/lib/python. Actually, modules are searched in the list of directories given by the variable sys.path which is initialized from the directory containing the input script (or the current directory), PYTHONPATH and the installation-dependent default.
๐ŸŒ
ArchWiki
wiki.archlinux.org โ€บ title โ€บ Apache_HTTP_Server โ€บ mod_python
Apache HTTP Server/mod_wsgi - ArchWiki
March 17, 2022 - mod_wsgi is an Apache HTTP Server module that embeds a Python application within the server and allow them to communicate through the Python WSGI interface as defined in the Python PEP 333.
๐ŸŒ
Modpython
modpython.org โ€บ live โ€บ current โ€บ doc-html โ€บ installation.html
Installation โ€” Mod_python v3.5.0-3.5.0 documentation
If you wish to selectively install just the Python libraries or the DSO (mod_python.so) (which may not always require superuser privileges), you can use the following make targets: install_py_lib and install_dso. ... You need to configure Apache to load the module by adding the following line ...
๐ŸŒ
TecAdmin
tecadmin.net โ€บ install-apache-with-python-mod-wsgi-on-debian-10
How to Install Apache with Python mod_wsgi on Debian 10 โ€“ TecAdmin
April 26, 2025 - Next, you need to install Apache web server including Apache utility package and mod_wsgi Python module on your system.
Find elsewhere
๐ŸŒ
Stack Overflow
stackoverflow.com โ€บ questions โ€บ 14338506 โ€บ mod-python-no-module-named-apache โ€บ 18104972
python - mod_python no module named _apache - Stack Overflow
Without those information, all I can say is "your module is not installed correctly" ;) ... @IgnacioVazquez-Abrams out of curiosity - which software do you refer here as "dead"? python2.7? mod_python? ubuntu12? ... _apache is installed by the mod_python module when it is loaded by Apache at startup.
๐ŸŒ
Matrixpost
blog.matrixpost.net โ€บ home โ€บ general โ€บ enable python for apache websites
Enable Python for Apache Websites - .matrixpost.net
July 6, 2024 - You can nevertheless install Python3 by using the following command. ... By default you will execute Python3 with the python3 command, by installing the packet below, you can execute Python3 also as usual with the command python. ... The mod_python module supports web applications written in Python.
๐ŸŒ
Modpython
modpython.org โ€บ live โ€บ current โ€บ doc-html โ€บ tutorial.html
Tutorial โ€” Mod_python v3.5.0-3.5.0 documentation
Mod_python provides every possible handler to Apache. Mod_python handlers by default do not perform any function, unless specifically told so by a configuration directive. These directives begin with 'Python' and end with 'Handler' (e.g. PythonAuthenHandler) and associate a phase with a Python ...
๐ŸŒ
Atlantic.Net
atlantic.net โ€บ home โ€บ blog โ€บ how to install apache with python mod_wsgi on debian
How to Install Apache with Python Mod_wsgi on Debian 12 | Atlantic.Net
September 2, 2025 - Mod_wsgi simplifies the WSGI application deployment on an Apache webserver. Learn how to install Apache with Python Mod_wsgi on Debian 12.
๐ŸŒ
Apache
cwiki.apache.org โ€บ confluence โ€บ display โ€บ MODPYTHON โ€บ Module+and+package+loading+in+version+3.3
Module and package loading in version 3.3 - MODPYTHON - Apache Software Foundation
July 9, 2019 - This is not much different to the first option in that you are still using PythonPath, but mod_python will not complain as there is no overlap in directories for each module importing mechanism. Note that in both cases above, because a package is being used, none of the modules in the package will be candidates for automatic reloading when changes are made. You will need to restart Apache whenever you make changes to the modules in the package.