🌐
GitHub
github.com › grisha › mod_python › blob › master › lib › python › mod_python › apache.py
mod_python/lib/python/mod_python/apache.py at master · grisha/mod_python
autoreload = config["PythonAutoReload"] == "1" module = import_module(module_name, autoreload=autoreload, log=debug) · # find the object · obj = resolve_object(module, obj_str, arg=fltr, silent=0) · # Only permit debugging using pdb if Apache has ·
Author   grisha
🌐
GitHub
github.com › xolox › python-apache-manager
GitHub - xolox/python-apache-manager: Monitor and control Apache web server workers from Python
Monitor and control Apache web server workers from Python - xolox/python-apache-manager
Starred by 6 users
Forked by 2 users
Languages   Python 95.8% | Makefile 2.8% | Shell 1.4% | Python 95.8% | Makefile 2.8% | Shell 1.4%
🌐
GitHub
gist.github.com › pj8912 › 689c3f41403ca855ae006667d2cd6928
Apache, python installation in linux server · GitHub
Apache, python installation in ... list · sudo ufw allow 'Apache' sudo systemctl status apache2 · sudo apt-get install libapache2-mod-wsgi python-dev ·...
🌐
GitHub
github.com › apache
The Apache Software Foundation · GitHub
Python 779 Apache-2.0 304 158 (15 issues need help) 89 Updated
🌐
PyPI
pypi.org › project › apache-libcloud
apache-libcloud · PyPI
Software Development :: Libraries :: Python Modules · Report project as malware · Apache Libcloud is a Python library which hides differences between different cloud provider APIs and allows you to manage different cloud resources through ...
      » pip install apache-libcloud
    
Published   Apr 21, 2026
Version   3.9.1
🌐
GitHub
github.com › apache › airflow-client-python
GitHub - apache/airflow-client-python: Apache Airflow - OpenApi Client for Python · GitHub
Apache Airflow - OpenApi Client for Python. Contribute to apache/airflow-client-python development by creating an account on GitHub.
Starred by 465 users
Forked by 74 users
Languages   Python
🌐
GitHub
github.com › vicb1 › apache-python-server
GitHub - vicb1/apache-python-server
Run command pip install mod_wsgi then run command mod_wsgi-express module-config which will create a module file in this directory. For me this was named mod_wsgi.pyd and its contents will depend on your Windows/Python versions.
Author   vicb1
🌐
GitHub
github.com › GrahamDumpleton › mod_wsgi › issues › 302
mod_wsgi unable to load python module · Issue #302 · GrahamDumpleton/mod_wsgi
April 18, 2018 - Server = RedHat 3.10 Apache version = 2.4.6 mod_wsgi = 4.6.3 Python Version = 3.6 Using mod_wsgi embedded mode · Issue: When Apache calls the wsgi file, it attempts to load the flask script as an application and fails with the following error: Traceback (most recent call last): File "/var/www/Flask/FlaskApp.wsgi", line 14, in from FlaskApp import app as application ModuleNotFoundError: No module named 'FlaskApp'
Author   GrahamDumpleton
🌐
GitHub
github.com › apache › apisix-python-plugin-runner
GitHub - apache/apisix-python-plugin-runner: Apache APISIX Python plugin runner · GitHub
Runs Apache APISIX plugins written in Python.
Starred by 41 users
Forked by 24 users
Languages   Python 90.1% | Go 7.9% | Makefile 2.0%
🌐
Readthedocs
modwsgi.readthedocs.io
mod_wsgi — mod_wsgi 6.0.5 documentation
The module itself can be built from source or, on Linux, installed from a distribution package (deb/rpm) where one is available. See Installation. As mod_wsgi-express, a pip-installable Python package that wraps Apache and mod_wsgi behind a single command and generates the Apache configuration for you.
Find elsewhere
🌐
GitHub
github.com › grisha › mod_python › issues › 12
ImportError: No module named _apache · Issue #12 · grisha/mod_python
November 1, 2013 - The content of mptest.py is just like the example in the doc: from mod_python import apache def handler(req): req.content_type = 'text/plain' req.write("Hello World mod_python test!") return apache.OK · and the mod_python version prints out: [huskier@server test]$ mod_python version · mod_python: 3.5.0-54d42b1 '/usr/lib64/httpd/modules/mod_python.so'
Author   grisha
🌐
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.
🌐
GitHub
github.com › apache › iceberg-python
GitHub - apache/iceberg-python: PyIceberg · GitHub
PyIceberg is a Python library for programmatic access to Iceberg table metadata as well as to table data in Iceberg format. It is a Python implementation of the Iceberg table spec. The documentation is available at https://py.iceberg.apache.org/.
Author   apache
🌐
Python
legacy.python.org › workshops › 2002-02 › papers › 07 › index.htm
Mod_Python: Integrating Python with Apache
Mod_python [1] is an Apache server [2] module that embeds the Python interpreter within the server and provides an interface to Apache server internals as well as a basic framework for simple application development in this environment.
🌐
GitHub
github.com › GrahamDumpleton › mod_wsgi › issues › 431
Django/pip/Apache - Failed to exec Python script file 'wsgi.py' No module named 'math' · Issue #431 · GrahamDumpleton/mod_wsgi
May 29, 2019 - I have disabled it a2dismod wsgi and uninstalled system packages apt remove libapache2-mod-wsgi libapache2-mod-wsgi-py3 I have installed mod_wsgi via pip with pip install mod_wsgi I pasted the output of mod_wsgi-express module-config in /etc/apache2/apache2.conf · LoadModule wsgi_module "/usr/local/lib/python3.7/dist-packages/mod_wsgi/server/mod_wsgi-py37.cpython-37m-x86_64-linux-gnu.so" WSGIPythonHome "/usr"
Author   GrahamDumpleton
🌐
PyPI
pypi.org › project › mod-wsgi
mod-wsgi · PyPI
June 10, 2026 - This works both with the system-supplied Apache on your operating system and with a self-built Apache installation. In this mode you continue to write the Apache configuration yourself, and the mod_wsgi package serves as a convenient way to obtain a compiled Apache module that matches your Python interpreter.
      » pip install mod-wsgi
    
Published   Jun 27, 2026
Version   6.0.5
🌐
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 a module named spam is imported, the interpreter searches for a file named spam.py in the directory containing the input script and then in the list of directories specified by the environment variable PYTHONPATH. This has the same syntax as the shell variable PATH, that is, a list of directory names. 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.
🌐
GitHub
github.com › topics › python-module
python-module · GitHub Topics · GitHub
CLI utility and Python module for analyzing log files and other data.